Provides an elm-review
rule to detect rgb
, rgba
, rgb255
and rgba255
values from elm-ui out of range.
module ReviewConfig exposing (config)
import NoInvalidRGBValues
import Review.Rule exposing (Rule)
config : List Rule
config =
[ NoInvalidRGBValues.rule
]