Files
daedalOS/.stylelintrc.json
Dustin Brett c00d4285da
Some checks are pending
Tests / tests (push) Waiting to run
Isolated q3 module
2025-01-18 23:39:50 -08:00

19 lines
470 B
JSON

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