selfdefined/.stylelintrc

14 lines
237 B
Plaintext
Raw Normal View History

{
"extends": "stylelint-config-recommended-scss",
"plugins": [
"stylelint-order"
],
"rules": {
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true
}
}