Add stricter SCSS stylelint rules

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2020-07-26 22:58:10 +02:00
parent 3d4d0a317d
commit 35d9954013
1 changed files with 7 additions and 1 deletions

View File

@ -18,7 +18,13 @@
"selector-type-case": null,
"selector-list-comma-newline-after": null,
"no-descending-specificity": null,
"string-quotes": "single"
"string-quotes": "single",
"selector-combinator-space-before": "always",
"selector-combinator-space-after": "always",
"declaration-block-no-duplicate-properties": true,
"no-extra-semicolons": true,
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never"
},
"plugins": [
"stylelint-scss"