-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
122 lines (122 loc) · 2.69 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
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
120
121
122
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order",
"stylelint-scss"
],
"rules": {
"indentation": 2,
"selector-class-pattern": [
"(^[a-z]([a-z]|[A-Z][a-z])+$)|(^[A-Z][a-z]([a-z]|[A-Z][a-z])+$)|(^[A-Z][a-z]([a-z]|[A-Z][a-z])+--|__[a-z][a-zA-Z]+$)",
{
"message": "You must use the Ghostery-BEM class naming conventions (eg. \".ThemedToast\" (parent HTML node of component), \".ThemedToast__closeButton\" (child HTML node in component), \".ThemedToast--boldText\" (a specific CSS property), or \".displayText\" (a secondary, modifying class that is not always applied)"
}
],
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"declaration-no-important": true,
"declaration-block-single-line-max-declarations": 1,
"selector-attribute-operator-whitelist": ["^="],
"block-no-empty": true,
"color-named": "never",
"number-leading-zero": "never",
"value-list-comma-space-after": "always",
"value-list-comma-space-before": "never",
"value-list-max-empty-lines": 0,
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never",
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"]
}
],
"comment-empty-line-before": [
"always",
{
"ignore": ["after-comment"]
}
],
"custom-property-empty-line-before": null,
"no-descending-specificity": null,
"order/order": [
"at-variables",
"at-rules",
"less-mixins",
"declarations",
"rules"
],
"order/properties-order": [
"visibility",
"position",
"z-index",
"vertical-align",
"top",
"bottom",
"left",
"right",
"transform",
"margin",
"margin-top",
"margin-bottom",
"margin-left",
"margin-right",
"opacity",
"box-shadow",
"background",
"background-color",
"background-image",
"background-position",
"background-repeat",
"background-size",
"object-fit",
"box-sizing",
"outline",
"border",
"border-top",
"border-bottom",
"border-left",
"border-right",
"border-color",
"border-radius",
"border-width",
"border-style",
"overflow",
"overflow-x",
"overflow-y",
"padding",
"padding-top",
"padding-bottom",
"padding-left",
"padding-right",
"width",
"min-width",
"max-width",
"height",
"min-height",
"max-height",
"display",
"flex-direction",
"flex-shrink",
"flex-wrap",
"align-items",
"justify-content",
"white-space",
"font-family",
"font-weight",
"font-size",
"font-style",
"line-height",
"text-align",
"text-decoration",
"text-overflow",
"text-shadow",
"color",
"cursor",
"content",
"pointer-events",
"transition",
"animation"
]
}
}