Skip to content

folq/review-rgb-ranges

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
    ]