summaryrefslogtreecommitdiffstats
path: root/.stylelintrc
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-26 10:04:30 +0100
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2018-02-26 10:04:33 +0100
commit3afed8dea87d39b656faa02a308f447033cda6a6 (patch)
treeb481437a83ddb024221ac7e3a4d5c57ebfbaed45 /.stylelintrc
parent2c9533296c6cdc1f904f971502b231d16e13e257 (diff)
Fixed scss lint
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to '.stylelintrc')
-rw-r--r--.stylelintrc9
1 files changed, 7 insertions, 2 deletions
diff --git a/.stylelintrc b/.stylelintrc
index 6391dd95..ce743ad9 100644
--- a/.stylelintrc
+++ b/.stylelintrc
@@ -1,5 +1,5 @@
{
- "extends": "stylelint-config-standard",
+ "extends": "stylelint-config-recommended-scss",
"rules": {
"indentation": "tab",
"selector-type-no-unknown": null,
@@ -13,5 +13,10 @@
"comment-empty-line-before": null,
"selector-type-case": null,
"selector-list-comma-newline-after": null,
- }
+ "no-descending-specificity": null,
+ "string-quotes": "single",
+ },
+ "plugins": [
+ "stylelint-scss"
+ ]
}