fysiweb/elm-review-sorted - version: 1.0.3

for more information visit the package's GitHub page

Package contains the following modules:

elm-review-sorted

Provides elm-review rules to keep case patterns, record fields, and type constructors sorted.

Provided rules

Configuration

module ReviewConfig exposing (config)

import NoUnsortedRecordFields
import NoUnsortedConstructors
import Review.Rule exposing (Rule)

config : List Rule
config =
    [ NoUnsortedConstructors.rule
    , NoUnsortedRecordFields.rule
    ]