eslint-plugin-color-hex-validation
v1.0.9
Published
Plugin for eslint, which will validate CSS HEX values
Downloads
167
Readme
eslint-plugin-color-hex-validation
This is eslint plugin which adds rule color-hex-validation. This rule will report and auto fix an error, if you use in your code color HEX values in lowercase. For example:
// wrong
. color {
color: "#fff";
}
// correct
. color {
color: "#FFF";
}