elm-review/review/ReviewConfig.elm

28 lines
607 B
Elm
Raw Normal View History

2019-09-28 18:06:15 +03:00
module ReviewConfig exposing (config)
2017-01-30 02:52:54 +03:00
2019-09-28 18:06:15 +03:00
{-| Do not rename the ReviewConfig module or the config function, because
`elm-review` will look for these.
2019-09-28 18:06:15 +03:00
To add packages that contain rules, add them to this review project using
`elm install author/packagename`
2019-09-28 18:06:15 +03:00
when inside the directory containing this file.
-}
import NoDebug
2019-08-28 19:53:59 +03:00
import NoUnused.CustomTypeConstructors
import NoUnused.Variables
2019-11-03 18:14:28 +03:00
import NoUnusedModules
import Review.Rule exposing (Rule)
2017-01-30 02:52:54 +03:00
2019-07-25 15:35:58 +03:00
config : List Rule
2017-06-15 17:17:32 +03:00
config =
[ NoDebug.rule
, NoUnused.Variables.rule
2019-08-28 19:53:59 +03:00
, NoUnused.CustomTypeConstructors.rule
2019-11-03 18:14:28 +03:00
, NoUnusedModules.rule
2017-01-30 02:52:54 +03:00
]