elm-review/lint/LintConfig.elm
2019-08-28 19:24:59 +02:00

24 lines
498 B
Elm

module LintConfig exposing (config)
{-| Do not rename the LintConfig module or the config function, because
`elm-lint` will look for these.
To add packages that contain rules, add them to this lint project using
`elm install author/packagename`
-}
import Lint.Rule exposing (Rule)
import NoDebug
import NoUnused.CustomTypeConstructors
import NoUnused.Variables
config : List Rule
config =
[ NoDebug.rule
, NoUnused.Variables.rule
, NoUnused.CustomTypeConstructors.rule
]