jfmengels/elm-review-simplify

Provides elm-review rules to simplify Elm code


Keywords
elm-review
License
BSD-3-Clause
Install
elm-package install jfmengels/elm-review-simplify 2.1.15

Documentation

elm-review-simplify

Provides elm-review rules to simplify Elm code.

Provided rules

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