diff options
author | stuebinm | 2021-11-14 03:09:50 +0100 |
---|---|---|
committer | stuebinm | 2021-11-14 03:09:50 +0100 |
commit | 52b73711fc21e121267318677840a54fbe174b10 (patch) | |
tree | c6e65874b376ca5d0712930796908c3e4f6490d7 /src | |
parent | 24a0763b4b0a87b5abd488ebca67f4c5ff9b966d (diff) |
Functional jitsiRoomAdminTag adjustment
also yet another typeclass™, because why not?
Diffstat (limited to 'src')
-rw-r--r-- | src/Main.hs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Main.hs b/src/Main.hs index 5dcf13c..a7710eb 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -49,7 +49,6 @@ run options = do let repo = fromMaybe "." (repository options) let entry = fromMaybe "main.json" (entrypoint options) let level = fromMaybe Suggestion (lintlevel options) - print (config options) lintconfig <- case configFile options of Nothing -> error "Need a config file!" @@ -60,9 +59,7 @@ run options = do Just p -> pure (patch file p) Nothing -> pure file - print lintconfig - - lints <- recursiveCheckDir repo entry + lints <- recursiveCheckDir lintconfig repo entry if json options then printLB |