generated from louisvillegeek/react-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
28 lines (28 loc) · 1.03 KB
/
.stylelintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-scss"
],
"rules": {
"selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$",
"at-rule-empty-line-before": null,
"max-empty-lines": 2,
"indentation": 4,
"no-descending-specificity": null,
"at-rule-no-unknown": null,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "never",
"scss/at-rule-no-unknown": true,
"scss/dollar-variable-colon-space-after": "always",
"scss/at-import-no-partial-leading-underscore": true,
"scss/at-import-partial-extension-blacklist": ["scss", "sass"],
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/at-mixin-parentheses-space-before": "always",
"scss/dollar-variable-colon-newline-after": "always-multi-line",
"scss/declaration-nested-properties-no-divided-groups": true,
"scss/selector-no-redundant-nesting-selector": true,
"scss/no-duplicate-dollar-variables": true
}
}