-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
45 lines (45 loc) · 1.09 KB
/
.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"extends": ["stylelint-config-sass-guidelines", "stylelint-config-wordpress"],
"plugins": [
"stylelint-scss"
],
"rules": {
"at-rule-no-unknown": null,
"font-weight-notation": null,
"max-line-length": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"scss/at-rule-no-unknown": true,
"scss/at-import-partial-extension-blacklist": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"max-nesting-depth": 3,
"at-rule-empty-line-before": [
"always",
{
except: [
"after-same-name",
"blockless-after-blockless",
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"string-quotes": "single",
"rule-empty-line-before": [
"always",
{
except: [
"first-nested",
"after-single-line-comment"
]
}
],
}
}