Files
Gereh/.stylelintrc.json
2026-08-13 20:00:11 +03:30

16 lines
300 B
JSON

{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"no-descending-specificity": null
}
}