forked from Graffino/Graffino-Docker-Ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
119 lines (119 loc) · 2.75 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"plugins": [ "stylelint-order", "stylelint-scss", "stylelint-prettier", "stylelint-selector-bem-pattern"],
"extends": ["stylelint-config-sass-guidelines", "stylelint-config-prettier"],
"rules": {
"scss/at-extend-no-missing-placeholder": null,
"scss/selector-no-redundant-nesting-selector": null,
"selector-max-compound-selectors": null,
"function-url-quotes": "never",
"max-nesting-depth": null,
"selector-class-pattern": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": null,
"order/properties-order": [
"content",
"box-sizing",
"pointer-events",
"overflow",
"overflow-x",
"overflow-y",
"visibility",
"opacity",
"position",
"top",
"right",
"bottom",
"left",
"z-index",
"float",
"clear",
"display",
"vertical-align",
"flex",
"flex-direction",
"justify-content",
"align-items",
"width",
"max-width",
"min-width",
"height",
"max-height",
"min-height",
"margin",
"margin-top",
"margin-right",
"margin-bottom",
"margin-left",
"border",
"border-top",
"border-right",
"border-bottom",
"border-left",
"border-width",
"border-style",
"border-color",
"border-spacing",
"border-collapse",
"border-radius",
"border-top-left-radius",
"border-top-right-radius",
"border-bottom-right-radius",
"border-bottom-left-radius",
"border-top-radius",
"padding",
"padding-top",
"padding-right",
"padding-bottom",
"padding-left",
"background",
"background-color",
"background-image",
"background-position",
"background-size",
"background-repeat",
"clip",
"list-style",
"color",
"font",
"font-family",
"font-display",
"font-size",
"font-style",
"font-weight",
"font-stretch",
"line-height",
"letter-spacing",
"text-align",
"text-indent",
"text-transform",
"text-decoration",
"text-shadow",
"text-overflow",
"white-space",
"outline",
"cursor",
"box-shadow",
"backface-visibility",
"will-change",
"transition",
"transition-property",
"transition-duration",
"transition-timing-function",
"perspective",
"transform",
"animation",
"appearance",
"filter"
],
"plugin/selector-bem-pattern": {
"componentName": "[A-Z]+",
"componentSelectors": {
"initial": "^\\.{componentName}(?:-[a-z]+)?$"
},
"utilitySelectors": "^\\.h-[a-z]+$"
}
}
}