mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-11-30 23:12:13 +03:00
24 lines
498 B
Elm
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
|
|
]
|