diff options
-rw-r--r-- | lib/LintConfig.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/LintConfig.hs b/lib/LintConfig.hs index 1b1b1bc..28559bd 100644 --- a/lib/LintConfig.hs +++ b/lib/LintConfig.hs @@ -31,9 +31,13 @@ type family HKD f a where data LintConfig f = LintConfig { configScriptInject :: HKD f (Maybe Text) + -- ^ Link to Script that should be injected , configAssemblyTag :: HKD f Text + -- ^ Assembly name (used for jitsiRoomAdminTag) , configMaxWarnLevel :: HKD f Level + -- ^ Maximum warn level allowed before the lint fails , configDontCopyAssets :: HKD f Bool + -- ^ Don't copy map assets (mostly useful for development) } deriving (Generic) type LintConfig' = LintConfig Identity |