{ "plugins": [ "stylelint-scss", "stylelint-order", ], "rules": { "indentation": 2, "number-leading-zero": "never", "string-quotes": "single", "selector-max-id": 0, "selector-list-comma-newline-after": "always", "rule-empty-line-before": [ "always", { "ignore": ["after-comment"], "except": ["first-nested"] }, ], "comment-empty-line-before": [ "always", { "except": ["first-nested"] }, ], "block-opening-brace-space-before": "always", "declaration-colon-space-after": "always", "declaration-colon-space-before": "never", "declaration-block-single-line-max-declarations": 1, "declaration-property-value-blacklist": { "/^border/": ["none"] }, "at-rule-empty-line-before": [ "always", { "ignore": ["after-comment", "inside-block"], except: ["blockless-after-same-name-blockless"] }, ], "max-nesting-depth": 3, "scss/dollar-variable-pattern": "^_?[a-z]+[\\w-]*$", "scss/at-extend-no-missing-placeholder": true, "order/order": [ "declarations", { "type": "at-rule" }, { "type": "at-rule", "hasBlock": true }, "rules", ], } }