1.0.9 • Published 2 years ago
eslint-plugin-color-hex-validation v1.0.9
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";
}