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-08-23 14:56:41 +03:00
|
|
|
|
2019-09-28 18:06:15 +03:00
|
|
|
To add packages that contain rules, add them to this review project using
|
2019-08-23 14:56:41 +03:00
|
|
|
|
|
|
|
`elm install author/packagename`
|
|
|
|
|
2019-09-28 18:06:15 +03:00
|
|
|
when inside the directory containing this file.
|
|
|
|
|
2019-08-23 14:56:41 +03:00
|
|
|
-}
|
2019-07-05 18:53:09 +03:00
|
|
|
|
2019-08-28 20:24:59 +03:00
|
|
|
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
|
2019-09-29 00:47:02 +03:00
|
|
|
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 =
|
2019-08-28 20:24:59 +03:00
|
|
|
[ 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
|
|
|
]
|