summaryrefslogtreecommitdiff
path: root/lib/CheckDir.hs
diff options
context:
space:
mode:
authorstuebinm2022-02-10 00:14:43 +0100
committerstuebinm2022-03-19 19:26:19 +0100
commitcdb6329b6acaab0a15441554412d8f5ececece1b (patch)
tree657a0527530b2e11b6507cc516de183f65f28447 /lib/CheckDir.hs
parenta55e0ce93d6a567e76c5a932a304c1c07fab0087 (diff)
server: simple servant-lucid stuff
Diffstat (limited to '')
-rw-r--r--lib/CheckDir.hs3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CheckDir.hs b/lib/CheckDir.hs
index f876084..eeb94a8 100644
--- a/lib/CheckDir.hs
+++ b/lib/CheckDir.hs
@@ -7,7 +7,7 @@
{-# LANGUAGE TypeFamilies #-}
-- | Module that contains high-level checking for an entire directory
-module CheckDir (recursiveCheckDir, DirResult(..), resultIsFatal) where
+module CheckDir (maximumLintLevel, recursiveCheckDir, DirResult(..), MissingAsset(..), MissingDep(..), resultIsFatal) where
import CheckMap (MapResult (..), loadAndLintMap)
import Control.Monad (void)
@@ -38,7 +38,6 @@ import Types (Dep (Local, LocalMap), Hint (Hint),
Level (..), hintLevel)
import Util (PrettyPrint (prettyprint), ellipsis)
-
-- based on the startling observation that Data.Map has lower complexity
-- for difference than Data.Set, but the same complexity for fromList
type Set a = Map a ()