-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
41 lines (40 loc) · 1.19 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-recommended-vue/scss"
],
"rules": {
"no-descending-specificity": null,
"at-rule-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"value-keyword-case": null,
"color-hex-length": "long",
"declaration-block-single-line-max-declarations": 0,
"max-nesting-depth": 3,
"selector-max-compound-selectors": 4,
"selector-class-pattern": null,
"media-feature-name-no-unknown": true,
"rule-empty-line-before": [
"always",
{
"except": [
"after-single-line-comment",
"first-nested"
]
}
],
"no-duplicate-selectors": null,
"indentation": [2, { "baseIndentLevel": 1 }],
"scss/dollar-variable-colon-space-after": [
"always-single-line"
],
"scss/at-function-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null,
"scss/percent-placeholder-pattern": null,
"scss/at-mixin-argumentless-call-parentheses": "never",
"scss/no-duplicate-dollar-variables": true,
"scss/dollar-variable-empty-line-before": null
}
}