-
Notifications
You must be signed in to change notification settings - Fork 4
/
.stylelintrc.json
42 lines (42 loc) · 1.29 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
42
{
"rules": {
"selector-pseudo-element-no-unknown": true,
"no-invalid-double-slash-comments": true,
"property-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"order/order": [
[
"custom-properties",
"declarations"
]
],
"rule-empty-line-before": [
"always",
{
"except": [
"after-single-line-comment",
"inside-block-and-after-rule",
"first-nested"
],
"ignore": [
"inside-block"
]
}
],
"declaration-block-single-line-max-declarations": 1,
"declaration-block-no-duplicate-properties": true,
"color-no-invalid-hex": true,
"color-hex-length": "short",
"no-invalid-position-at-import-rule": null,
"no-descending-specificity": null,
"selector-pseudo-class-no-unknown": null,
"value-keyword-case": null,
"scss/no-global-function-names": null
},
"extends": "stylelint-config-standard-scss",
"plugins": [
"stylelint-order"
]
}