daedalOS/.stylelintrc.json
Dustin Brett c98d8d823d
Some checks failed
Tests / tests (push) Has been cancelled
Package upgrades
2025-08-11 10:35:36 -07:00

20 lines
528 B
JSON

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