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 Review.Rule exposing (Rule) import NoExposingEverything import NoImportingEverything import NoMissingTypeAnnotation import NoMissingTypeAnnotationInLetIn import NoMissingTypeExpose import NoPrematureLetComputation import Review.Rule exposing (Rule) config : List Rule config = [ NoExposingEverything.rule , NoImportingEverything.rule [] , NoMissingTypeAnnotation.rule , NoMissingTypeAnnotationInLetIn.rule , NoMissingTypeExpose.rule , NoPrematureLetComputation.rule ]