-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
26 lines (26 loc) · 829 Bytes
/
.stylelintrc
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
{
"extends": "stylelint-config-sass-guidelines",
"rules": {
"at-rule-empty-line-before": null,
"color-hex-length": "long",
"declaration-empty-line-before": "never",
"scss/dollar-variable-pattern": null,
"scss/dollar-variable-colon-space-after": null,
"scss/at-mixin-pattern": null,
"indentation": 2,
"max-empty-lines": 3,
"max-nesting-depth": 5,
"order/properties-alphabetical-order": true,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-max-id": 2,
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": null,
"function-url-quotes": null,
"scss/at-rule-no-unknown": null,
"function-parentheses-space-inside": "never-single-line",
"property-no-unknown": [true, {
ignoreProperties: [/^var/]
}]
}
}