-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
33 lines (30 loc) · 961 Bytes
/
.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
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"rules": {
"selector-list-comma-newline-after": "always-multi-line",
"selector-list-comma-space-after": "always-single-line",
"selector-attribute-operator-space-after": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
],
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"block-no-empty": null,
"block-closing-brace-newline-after": "always",
"rule-empty-line-before": [
"always",
{
"except": ["after-single-line-comment"],
"ignore": ["after-comment", "first-nested"]
}
],
"no-descending-specificity": null,
"at-rule-no-unknown": [true, { "ignoreAtRules": ["/^(define-)?mixin/"] }]
}
}