folq/review-rgb-ranges - version: 1.0.5

for more information visit the package's GitHub page

Package contains the following modules:

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
    ]