elm-review/LintConfig.elm
2019-07-25 14:37:10 +02:00

22 lines
601 B
Elm

module LintConfig exposing (config)
-- Do not rename the module or the exposed function.
-- `elm-lint` will look for these.
import Lint.Rule exposing (Rule)
import Lint.Rule.NoDebug
import Lint.Rule.NoExtraBooleanComparison
import Lint.Rule.NoImportingEverything
import Lint.Rule.NoUnusedTypeConstructors
import Lint.Rule.NoUnusedVariables
config : List Rule
config =
[ Lint.Rule.NoDebug.rule
, Lint.Rule.NoExtraBooleanComparison.rule
, Lint.Rule.NoImportingEverything.rule { exceptions = [] }
, Lint.Rule.NoUnusedVariables.rule
, Lint.Rule.NoUnusedTypeConstructors.rule
]