decioferreira/elm-review-zen-css - version: 1.0.0

for more information visit the package's GitHub page

Package contains the following modules:

elm-review-zen-css

Provides elm-review rules to support the use of elm-zen-css.

Provided rules

Configuration

module ReviewConfig exposing (config)

import Review.Rule exposing (Rule)
import ZenCss.NoHtmlClasses
import ZenCss.NoHtmlStyles

config : List Rule
config =
    [ ZenCss.NoHtmlClasses.rule
    , ZenCss.NoHtmlStyles.rule
    ]

Try it out

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

elm-review --template decioferreira/elm-review-zen-css/example