for more information visit the package's GitHub page
Package contains the following modules:
Provides elm-review
rules to keep case
patterns, record fields, and type
constructors sorted.
NoUnsortedConstructors
- Reports the use of unsorted case
patterns and type
constructors.NoUnsortedRecordFields
- Reports the use of unsorted record fields.module ReviewConfig exposing (config)
import NoUnsortedRecordFields
import NoUnsortedConstructors
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoUnsortedConstructors.rule
, NoUnsortedRecordFields.rule
]