elm-review-simplify
Provides elm-review
rules to simplify Elm code.
Provided rules
🔧 Simplify
- Reports when an expression can be simplified.
Configuration
module ReviewConfig exposing (config)
import Review.Rule exposing (Rule)
import Simplify
config : List Rule
config =
[ Simplify.rule Simplify.defaults
]
Try it out
You can try the example configuration above out by running the following command:
elm-review --template jfmengels/elm-review-simplify/example