-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
136 lines (136 loc) · 4.97 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-rational-order"
],
"plugins": [
"stylelint-scss",
"stylelint-order",
"stylelint-declaration-block-no-ignored-properties"
],
"rules": {
"plugin/rational-order": [
true,
{
"empty-line-between-groups": false
}
],
"plugin/declaration-block-no-ignored-properties": true,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"declaration-empty-line-before": null,
"order/properties-order": [],
"indentation": 4,
"max-empty-lines": 1,
"no-empty-first-line": null,
"declaration-block-single-line-max-declarations": 3
},
"overrides": [
{
"files": [
"**/*.scss",
"*.scss"
],
"customSyntax": "postcss-scss",
"rules": {
"order/order": [
[
"dollar-variables",
"custom-properties",
{
"type": "at-rule",
"name": "include",
"hasBlock": false,
"groups": "sass"
},
{
"type": "at-rule",
"name": "include",
"hasBlock": true,
"groups": "sass"
},
{
"type": "at-rule",
"name": "include",
"parameter": "breakpoint",
"hasBlock": false,
"groups": "sass"
},
{
"type": "at-rule",
"name": "extend",
"hasBlock": false,
"groups": "sass"
},
"declarations",
{
"type": "rule",
"selector": "^&:(before|after)"
},
{
"type": "rule",
"selector": "^&::(before|after)"
},
{
"type": "rule",
"selector": "^&:(first-child|last-child|nth-child|last-of-type|first-of-type|nth-of-type)"
},
{
"type": "rule",
"selector": "&:hover"
},
{
"type": "rule",
"selector": "&:focus"
},
{
"type": "rule",
"selector": "&:active"
},
{
"type": "rule",
"selector": "&:disabled"
},
{
"type": "rule",
"selector": "^&:"
},
{
"type": "rule",
"selector": "^&::"
},
"at-rules",
"rules",
{
"type": "rule",
"selector": "^&?"
},
{
"type": "rule",
"selector": "modifiersSelector"
}
]
],
"scss/at-extend-no-missing-placeholder": null,
"scss/at-function-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/at-mixin-pattern": "^[a-z]+([a-z0-9-]+[a-z0-9]+)?$",
"scss/dollar-variable-pattern": "^[_]?[a-z]+([a-zA-Z0-9-]-?[a-zA-Z0-9].+)?$",
"scss/percent-placeholder-pattern": "^([a-z][a-zA-Z0-9]*)((__)?[a-z0-9][a-zA-Z0-9])+$",
"scss/double-slash-comment-empty-line-before": null,
"scss/at-mixin-argumentless-call-parentheses": null,
"keyframes-name-pattern": "^([a-z][a-zA-Z0-9]*)(-?[a-z0-9]+)*$",
"selector-class-pattern": "^([a-z][a-zA-Z0-9]*)((__)?[a-z0-9][a-zA-Z0-9]+(--[a-z])?)*$",
"custom-property-pattern": "^([a-z][a-z0-9]*)(-?[a-zA-Z0-9]+)*$",
"selector-list-comma-newline-after": "always",
"max-line-length": null
}
},
{
"files": [
"**/*.css",
"*.css"
],
"customSyntax": "css"
}
]
}