jfmengels/elm-review-performance - version: 1.0.2

for more information visit the package's GitHub page

Package contains the following modules:

elm-review-performance

Provides elm-review rules to report performance problems.

Provided rules

Configuration

module ReviewConfig exposing (config)

import NoUnoptimizedRecursion
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoUnoptimizedRecursion.rule (NoUnoptimizedRecursion.optOutWithComment "IGNORE TCO")
    ]

Try it out

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

elm-review --template jfmengels/elm-review-performance/example