Files
daedalOS/.stylelintrc.json
Dustin Brett e55cca1427
Some checks failed
Tests / tests (push) Has been cancelled
Pkg upgrades
2025-04-09 22:17:22 -07:00

18 lines
429 B
JSON

{
"customSyntax": "postcss-styled-syntax",
"extends": ["stylelint-config-standard"],
"plugins": ["stylelint-order"],
"rules": {
"alpha-value-notation": "percentage",
"hue-degree-notation": "number",
"no-empty-source": null,
"order/properties-alphabetical-order": true,
"value-keyword-case": [
"lower",
{
"ignoreKeywords": ["currentColor", "optimizeLegibility"]
}
]
}
}