diff --git a/lib/LintConfig.hs b/lib/LintConfig.hs
index 1b1b1bce131899597b4457f332de5acf39ad3f86..28559bda747c49cb3da96a6dd02ef896da14db74 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