-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.stylelintrc.json
41 lines (41 loc) · 902 Bytes
/
.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",
"stylelint-config-standard-scss",
"stylelint-config-recommended-scss"
],
"plugins": [
"stylelint-declaration-block-no-ignored-properties"
],
"customSyntax": "postcss-scss",
"rules": {
"selector-class-pattern": null,
"at-rule-empty-line-before": [
"always",
{
"except": [
"after-same-name",
"blockless-after-blockless",
"first-nested"
],
"ignore": [
"after-comment"
],
"ignoreAtRules": [
"else"
]
}
],
"selector-type-no-unknown": [
true,
{
"ignore": [
"custom-elements",
"default-namespace"
]
}
],
"no-descending-specificity": null,
"plugin/declaration-block-no-ignored-properties": true
}
}