Skip to content

jfmengels/elm-review-the-elm-architecture

elm-review-the-elm-architecture

Provides elm-review rules to improve your use of The Elm Architecture.

Provided rules

Configuration

module ReviewConfig exposing (config)

import NoMissingSubscriptionsCall
import NoRecursiveUpdate
import NoUselessSubscriptions
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoMissingSubscriptionsCall.rule
    , NoRecursiveUpdate.rule
    , NoUselessSubscriptions.rule
    ]

Try it out

You can try the example configuration above out by running the following command:

elm-review --template jfmengels/elm-review-the-elm-architecture/example