summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstuebinm2021-11-23 19:08:54 +0100
committerstuebinm2021-11-23 19:08:54 +0100
commit61e66f41b61baf69c08ee7c9d8738ad68fde669e (patch)
treeecc5e25df5f299dc663edce9b645167b304c1bc3
parent95323a5c7db4b620fc3eba7c67b15af512fed267 (diff)
add a severity attribute to the json output
-rw-r--r--lib/CheckDir.hs27
1 files changed, 16 insertions, 11 deletions
diff --git a/lib/CheckDir.hs b/lib/CheckDir.hs
index b1b5830..61ac81c 100644
--- a/lib/CheckDir.hs
+++ b/lib/CheckDir.hs
@@ -57,28 +57,33 @@ data MissingDep = MissingDep
, neededBy :: [FilePath]
} deriving (Generic, ToJSON)
+-- | Missing assets are the same thing as missing dependencies,
+-- but should not be confused (and also serialise differently
+-- to json)
newtype MissingAsset = MissingAsset MissingDep
-
+-- | given this config, should the result be considered to have failed?
resultIsFatal :: LintConfig' -> DirResult -> Bool
resultIsFatal config res =
not (null (dirresultMissingAssets res))
- && configMaxLintLevel config <= maxObservedLevel
- where maxObservedLevel = maximum
- . map hintLevel
- . concatMap (keys . mapresultLayer)
- . elems
- . dirresultMaps
- $ res
-
-
-
+ && configMaxLintLevel config <= maximumLintLevel res
+
+-- | maximum lint level that was observed anywhere in any map.
+-- note that it really does go through all lints, so don't
+-- call it too often
+maximumLintLevel :: DirResult -> Level
+maximumLintLevel = maximum
+ . map hintLevel
+ . concatMap (keys . mapresultLayer)
+ . elems
+ . dirresultMaps
instance ToJSON DirResult where
toJSON res = A.object
[ "missingDeps" .= dirresultDeps res
, "missingAssets" .= dirresultMissingAssets res
, "mapLints" .= dirresultMaps res
+ , "severity" .= maximumLintLevel res
]
instance ToJSON MissingAsset where