-
Notifications
You must be signed in to change notification settings - Fork 509
/
.stylelintrc.json
51 lines (51 loc) · 1.39 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
43
44
45
46
47
48
49
50
51
{
"extends": [
"stylelint-config-recommended",
"stylelint-config-sass-guidelines",
"stylelint-a11y/recommended",
"stylelint-prettier/recommended",
"stylelint-config-prettier"
],
"plugins": ["stylelint-scss", "stylelint-order"],
"rules": {
"a11y/media-prefers-reduced-motion": null,
"a11y/no-outline-none": null,
"a11y/selector-pseudo-class-focus": null,
"declaration-property-value-disallowed-list": null,
"font-family-no-missing-generic-family-keyword": null,
"max-nesting-depth": null,
"media-query-no-invalid": null,
"no-descending-specificity": null,
"no-invalid-position-at-import-rule": null,
"no-irregular-whitespace": null,
"order/order": [
[
"custom-properties",
"dollar-variables",
"declarations",
{
"type": "at-rule",
"name": "extend"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
{
"type": "at-rule",
"name": "include",
"hasBlock": true
},
"rules"
]
],
"order/properties-alphabetical-order": true,
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-no-qualifying-type": null,
"selector-pseudo-element-colon-notation": null
}
}