This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.stylelintrc
98 lines (98 loc) · 2.38 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"extends": "stylelint-config-recommended",
"plugins": ["stylelint-order", "stylelint-selector-bem-pattern"],
"rules": {
"order/order": ["custom-properties", "declarations"],
"order/properties-alphabetical-order": [true, { "severity": "warning" }],
"plugin/selector-bem-pattern": [
{
"preset": "suit"
},
{ "severity": "warning" }
],
"at-rule-no-unknown": null,
"at-rule-no-vendor-prefix": true,
"at-rule-whitelist": ["font-face", "media"],
"declaration-no-important": true,
"font-family-no-missing-generic-family-keyword": null,
"function-url-no-scheme-relative": true,
"function-url-scheme-whitelist": [],
"function-whitelist": [
"color",
"minmax",
"opacity",
"shade",
"tint",
"url"
],
"media-feature-name-no-vendor-prefix": true,
"media-feature-name-whitelist": ["min-width"],
"number-max-precision": 4,
"property-no-unknown": null,
"property-no-vendor-prefix": true,
"property-whitelist": [
"align-items",
"appearance",
"background-color",
"border",
"border-bottom",
"border-color",
"border-radius",
"border-right",
"border-top",
"box-shadow",
"box-sizing",
"content",
"color",
"display",
"filter",
"font-family",
"font-size",
"font-style",
"font-weight",
"font",
"grid-auto-rows",
"grid-gap",
"grid-template-columns",
"height",
"left",
"line-height",
"list-style",
"margin-bottom",
"margin-left",
"margin-top",
"margin",
"max-width",
"padding-left",
"padding",
"padding-bottom",
"page-break-after",
"position",
"src",
"text-align",
"text-decoration",
"top",
"white-space",
"width"
],
"selector-attribute-operator-whitelist": [],
"selector-max-attribute": 0,
"selector-max-class": 2,
"selector-max-id": 0,
"selector-max-type": 0,
"selector-max-universal": 0,
"selector-no-vendor-prefix": true,
"selector-pseudo-class-no-unknown": null,
"selector-pseudo-class-whitelist": [
"active",
"before",
"empty",
"first-child",
"hover",
"not"
],
"unit-no-unknown": null,
"unit-whitelist": ["%", "fr", "px", "rem"],
"value-no-vendor-prefix": true
}
}