folq/review-rgb-ranges

Provides elm-review rules to detect rgb values out of range


License
BSD-3-Clause
Install
elm-package install folq/review-rgb-ranges 1.0.3

Documentation

review-rgb-ranges

Provides an elm-review rule to detect rgb, rgba, rgb255 and rgba255 values from elm-ui out of range.

Example configuration

module ReviewConfig exposing (config)

import NoInvalidRGBValues
import Review.Rule exposing (Rule)


config : List Rule
config =
    [ NoInvalidRGBValues.rule
    ]