Files
2026-08-14 11:29:11 -06:00

24 lines
609 B
JSON

{
"rules": {
"color-no-invalid-hex": true,
"color-named": "never",
"custom-property-pattern": "^[a-z][a-z0-9-]*$",
"declaration-property-unit-allowed-list": {
"font-size": ["rem", "em", "px"],
"margin": ["rem", "px", "%"],
"padding": ["rem", "px", "%"],
"border-radius": ["rem", "px"]
},
"comment-no-empty": true,
"shorthand-property-no-redundant-values": true,
"no-duplicate-selectors": true,
"selector-class-pattern": "^[a-z][a-z0-9-]*$"
},
"overrides": [
{
"files": ["**/*.html"],
"customSyntax": "postcss-html"
}
]
}