-
Notifications
You must be signed in to change notification settings - Fork 4
/
.stylelintrc
45 lines (45 loc) · 1.04 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-standard",
"stylelint-config-wordpress/scss"
],
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-empty-line-before": [ "always", {
except: [
"blockless-after-same-name-blockless",
"first-nested"
],
ignore: ["after-comment"]
} ],
"comment-whitespace-inside": null,
"declaration-block-no-ignored-properties": null,
"function-url-quotes": "always",
"indentation": null,
"max-line-length": null,
"media-feature-no-missing-punctuation": null,
"no-eol-whitespace": [ true, {
ignore: [
"empty-lines"
]
} ],
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"rule-empty-line-before": [ "always-multi-line", {
except: [
"after-single-line-comment"
],
ignore: [
"after-comment"
]
} ],
"rule-nested-empty-line-before": null,
"rule-non-nested-empty-line-before": null,
"selector-no-empty": null
}
}