1
1
plugins :
2
2
- stylelint-declaration-strict-value
3
3
- stylelint-declaration-block-no-ignored-properties
4
- - stylelint-stylistic
4
+ - " @stylistic/ stylelint-plugin "
5
5
6
6
ignoreFiles :
7
7
- " **/*.go"
@@ -17,6 +17,82 @@ overrides:
17
17
customSyntax : postcss-html
18
18
19
19
rules :
20
+ " @stylistic/at-rule-name-case " : null
21
+ " @stylistic/at-rule-name-newline-after " : null
22
+ " @stylistic/at-rule-name-space-after " : null
23
+ " @stylistic/at-rule-semicolon-newline-after " : null
24
+ " @stylistic/at-rule-semicolon-space-before " : null
25
+ " @stylistic/block-closing-brace-empty-line-before " : null
26
+ " @stylistic/block-closing-brace-newline-after " : null
27
+ " @stylistic/block-closing-brace-newline-before " : null
28
+ " @stylistic/block-closing-brace-space-after " : null
29
+ " @stylistic/block-closing-brace-space-before " : null
30
+ " @stylistic/block-opening-brace-newline-after " : null
31
+ " @stylistic/block-opening-brace-newline-before " : null
32
+ " @stylistic/block-opening-brace-space-after " : null
33
+ " @stylistic/block-opening-brace-space-before " : null
34
+ " @stylistic/color-hex-case " : lower
35
+ " @stylistic/declaration-bang-space-after " : never
36
+ " @stylistic/declaration-bang-space-before " : null
37
+ " @stylistic/declaration-block-semicolon-newline-after " : null
38
+ " @stylistic/declaration-block-semicolon-newline-before " : null
39
+ " @stylistic/declaration-block-semicolon-space-after " : null
40
+ " @stylistic/declaration-block-semicolon-space-before " : never
41
+ " @stylistic/declaration-block-trailing-semicolon " : null
42
+ " @stylistic/declaration-colon-newline-after " : null
43
+ " @stylistic/declaration-colon-space-after " : null
44
+ " @stylistic/declaration-colon-space-before " : never
45
+ " @stylistic/function-comma-newline-after " : null
46
+ " @stylistic/function-comma-newline-before " : null
47
+ " @stylistic/function-comma-space-after " : null
48
+ " @stylistic/function-comma-space-before " : null
49
+ " @stylistic/function-max-empty-lines " : 0
50
+ " @stylistic/function-parentheses-newline-inside " : never-multi-line
51
+ " @stylistic/function-parentheses-space-inside " : null
52
+ " @stylistic/function-whitespace-after " : null
53
+ " @stylistic/indentation " : 2
54
+ " @stylistic/linebreaks " : null
55
+ " @stylistic/max-empty-lines " : 1
56
+ " @stylistic/max-line-length " : null
57
+ " @stylistic/media-feature-colon-space-after " : null
58
+ " @stylistic/media-feature-colon-space-before " : never
59
+ " @stylistic/media-feature-name-case " : null
60
+ " @stylistic/media-feature-parentheses-space-inside " : null
61
+ " @stylistic/media-feature-range-operator-space-after " : always
62
+ " @stylistic/media-feature-range-operator-space-before " : always
63
+ " @stylistic/media-query-list-comma-newline-after " : null
64
+ " @stylistic/media-query-list-comma-newline-before " : null
65
+ " @stylistic/media-query-list-comma-space-after " : null
66
+ " @stylistic/media-query-list-comma-space-before " : null
67
+ " @stylistic/no-empty-first-line " : null
68
+ " @stylistic/no-eol-whitespace " : true
69
+ " @stylistic/no-extra-semicolons " : true
70
+ " @stylistic/no-missing-end-of-source-newline " : null
71
+ " @stylistic/number-leading-zero " : null
72
+ " @stylistic/number-no-trailing-zeros " : null
73
+ " @stylistic/property-case " : lower
74
+ " @stylistic/selector-attribute-brackets-space-inside " : null
75
+ " @stylistic/selector-attribute-operator-space-after " : null
76
+ " @stylistic/selector-attribute-operator-space-before " : null
77
+ " @stylistic/selector-combinator-space-after " : null
78
+ " @stylistic/selector-combinator-space-before " : null
79
+ " @stylistic/selector-descendant-combinator-no-non-space " : null
80
+ " @stylistic/selector-list-comma-newline-after " : null
81
+ " @stylistic/selector-list-comma-newline-before " : null
82
+ " @stylistic/selector-list-comma-space-after " : always-single-line
83
+ " @stylistic/selector-list-comma-space-before " : never-single-line
84
+ " @stylistic/selector-max-empty-lines " : 0
85
+ " @stylistic/selector-pseudo-class-case " : lower
86
+ " @stylistic/selector-pseudo-class-parentheses-space-inside " : never
87
+ " @stylistic/selector-pseudo-element-case " : lower
88
+ " @stylistic/string-quotes " : double
89
+ " @stylistic/unicode-bom " : null
90
+ " @stylistic/unit-case " : lower
91
+ " @stylistic/value-list-comma-newline-after " : null
92
+ " @stylistic/value-list-comma-newline-before " : null
93
+ " @stylistic/value-list-comma-space-after " : null
94
+ " @stylistic/value-list-comma-space-before " : null
95
+ " @stylistic/value-list-max-empty-lines " : 0
20
96
alpha-value-notation : null
21
97
annotation-no-unknown : true
22
98
at-rule-allowed-list : null
@@ -137,82 +213,6 @@ rules:
137
213
selector-type-no-unknown : [true, {ignore: [custom-elements]}]
138
214
shorthand-property-no-redundant-values : true
139
215
string-no-newline : true
140
- stylistic/at-rule-name-case : null
141
- stylistic/at-rule-name-newline-after : null
142
- stylistic/at-rule-name-space-after : null
143
- stylistic/at-rule-semicolon-newline-after : null
144
- stylistic/at-rule-semicolon-space-before : null
145
- stylistic/block-closing-brace-empty-line-before : null
146
- stylistic/block-closing-brace-newline-after : null
147
- stylistic/block-closing-brace-newline-before : null
148
- stylistic/block-closing-brace-space-after : null
149
- stylistic/block-closing-brace-space-before : null
150
- stylistic/block-opening-brace-newline-after : null
151
- stylistic/block-opening-brace-newline-before : null
152
- stylistic/block-opening-brace-space-after : null
153
- stylistic/block-opening-brace-space-before : null
154
- stylistic/color-hex-case : lower
155
- stylistic/declaration-bang-space-after : never
156
- stylistic/declaration-bang-space-before : null
157
- stylistic/declaration-block-semicolon-newline-after : null
158
- stylistic/declaration-block-semicolon-newline-before : null
159
- stylistic/declaration-block-semicolon-space-after : null
160
- stylistic/declaration-block-semicolon-space-before : never
161
- stylistic/declaration-block-trailing-semicolon : null
162
- stylistic/declaration-colon-newline-after : null
163
- stylistic/declaration-colon-space-after : null
164
- stylistic/declaration-colon-space-before : never
165
- stylistic/function-comma-newline-after : null
166
- stylistic/function-comma-newline-before : null
167
- stylistic/function-comma-space-after : null
168
- stylistic/function-comma-space-before : null
169
- stylistic/function-max-empty-lines : 0
170
- stylistic/function-parentheses-newline-inside : never-multi-line
171
- stylistic/function-parentheses-space-inside : null
172
- stylistic/function-whitespace-after : null
173
- stylistic/indentation : 2
174
- stylistic/linebreaks : null
175
- stylistic/max-empty-lines : 1
176
- stylistic/max-line-length : null
177
- stylistic/media-feature-colon-space-after : null
178
- stylistic/media-feature-colon-space-before : never
179
- stylistic/media-feature-name-case : null
180
- stylistic/media-feature-parentheses-space-inside : null
181
- stylistic/media-feature-range-operator-space-after : always
182
- stylistic/media-feature-range-operator-space-before : always
183
- stylistic/media-query-list-comma-newline-after : null
184
- stylistic/media-query-list-comma-newline-before : null
185
- stylistic/media-query-list-comma-space-after : null
186
- stylistic/media-query-list-comma-space-before : null
187
- stylistic/no-empty-first-line : null
188
- stylistic/no-eol-whitespace : true
189
- stylistic/no-extra-semicolons : true
190
- stylistic/no-missing-end-of-source-newline : null
191
- stylistic/number-leading-zero : null
192
- stylistic/number-no-trailing-zeros : null
193
- stylistic/property-case : lower
194
- stylistic/selector-attribute-brackets-space-inside : null
195
- stylistic/selector-attribute-operator-space-after : null
196
- stylistic/selector-attribute-operator-space-before : null
197
- stylistic/selector-combinator-space-after : null
198
- stylistic/selector-combinator-space-before : null
199
- stylistic/selector-descendant-combinator-no-non-space : null
200
- stylistic/selector-list-comma-newline-after : null
201
- stylistic/selector-list-comma-newline-before : null
202
- stylistic/selector-list-comma-space-after : always-single-line
203
- stylistic/selector-list-comma-space-before : never-single-line
204
- stylistic/selector-max-empty-lines : 0
205
- stylistic/selector-pseudo-class-case : lower
206
- stylistic/selector-pseudo-class-parentheses-space-inside : never
207
- stylistic/selector-pseudo-element-case : lower
208
- stylistic/string-quotes : double
209
- stylistic/unicode-bom : null
210
- stylistic/unit-case : lower
211
- stylistic/value-list-comma-newline-after : null
212
- stylistic/value-list-comma-newline-before : null
213
- stylistic/value-list-comma-space-after : null
214
- stylistic/value-list-comma-space-before : null
215
- stylistic/value-list-max-empty-lines : 0
216
216
time-min-milliseconds : null
217
217
unit-allowed-list : null
218
218
unit-disallowed-list : null
0 commit comments