.stylelintrc
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss",
],
"rules": {
"at-rule-empty-line-before": "never",
"block-opening-brace-space-before": "always",
"comment-empty-line-before": ["always", {
ignore: ["stylelint-commands"],
}],
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"at-rule-no-unknown": null,
"max-nesting-depth": 3,
"no-invalid-double-slash-comments": true,
"rule-empty-line-before": ["always", {
ignore: ["after-comment"],
}],
"selector-list-comma-newline-after": "always",
"selector-max-id": 0,
"declaration-property-value-blacklist": {
"/^border/": ["none"],
},
"no-descending-specificity": null
}
}