Provides elm-review
rules to assist in migrating off of elm-css
.
-
OnlyInAttributeList
- Reports instances ofcss
outside of list of attributes.
module ReviewConfig exposing (config)
importOnlyInAttributeList
import Review.Rule exposing (Rule)
config : List Rule
config =
[ OnlyInAttributeList.rule
]
You can try the example configuration above out by running the following command:
elm-review --template pete-murphy/elm-review-elm-css-migration/example