16 lines
300 B
JSON
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
|
|
}
|
|
}
|