elm-review/review/ReviewConfig.elm
2020-01-15 16:35:03 +01:00

30 lines
657 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 NoUnusedExports
import NoUnusedModules
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoDebug.rule
, NoUnused.Variables.rule
, NoUnused.CustomTypeConstructors.rule
, NoUnusedModules.rule
, NoUnusedExports.rule
]