Files
cyberduck/.stylelintrc.json
2026-03-09 11:33:07 +01:00

25 lines
448 B
JSON

{
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"stylelint-scss",
"stylelint-order"
],
"customSyntax": "postcss-scss",
"rules": {
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"order/properties-alphabetical-order": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-order": [
"width",
"height"
],
"max-nesting-depth": 3
}
}