mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
18 lines
441 B
JSON
18 lines
441 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",
|
|
"order/properties-alphabetical-order": true,
|
|
"value-keyword-case": [
|
|
"lower",
|
|
{
|
|
"ignoreKeywords": ["currentColor", "optimizeLegibility"]
|
|
}
|
|
]
|
|
}
|
|
}
|