mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-24 07:33:38 +03:00
22 lines
601 B
Elm
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
|
|
]
|