mirror of
https://github.com/jfmengels/elm-review.git
synced 2024-12-18 07:01:48 +03:00
32 lines
717 B
Elm
32 lines
717 B
Elm
module ReviewConfig exposing (config)
|
|
|
|
{-| Do not rename the ReviewConfig module or the config function, because
|
|
`elm-review` will look for these.
|
|
|
|
To add packages that contain rules, add them to this review project using
|
|
|
|
`elm install author/packagename`
|
|
|
|
when inside the directory containing this file.
|
|
|
|
-}
|
|
|
|
import NoDebug
|
|
import NoUnused.CustomTypeConstructors
|
|
import NoUnused.Variables
|
|
import NoUnusedDependencies
|
|
import NoUnusedExports
|
|
import NoUnusedModules
|
|
import Review.Rule exposing (Rule)
|
|
|
|
|
|
config : List Rule
|
|
config =
|
|
[ NoDebug.rule
|
|
, NoUnused.CustomTypeConstructors.rule
|
|
, NoUnused.Variables.rule
|
|
, NoUnusedDependencies.rule
|
|
, NoUnusedExports.rule
|
|
, NoUnusedModules.rule
|
|
]
|