|
1 | 1 | { |
2 | 2 | "plugins": [ |
3 | 3 | "stylelint-scss", |
4 | | - "stylelint-order" |
| 4 | + "stylelint-order", |
| 5 | + "@stylistic/stylelint-plugin" |
5 | 6 | ], |
6 | 7 | "customSyntax": "postcss-scss", |
7 | 8 | "rules": { |
8 | | - "declaration-bang-space-before": "always", |
9 | | - "declaration-bang-space-after": "never", |
10 | 9 | "color-named": "never", |
11 | 10 | "declaration-block-no-duplicate-properties": true, |
12 | 11 | "block-no-empty": true, |
13 | | - "no-missing-end-of-source-newline": true, |
14 | 12 | "color-hex-length": "short", |
15 | | - "color-hex-case": "lower", |
16 | 13 | "color-no-invalid-hex": true, |
17 | | - "indentation": 2, |
18 | | - "number-leading-zero": "never", |
19 | 14 | "max-nesting-depth": 4, |
20 | 15 | "selector-max-compound-selectors": 5, |
21 | 16 | "order/properties-order": [ |
|
197 | 192 | "animation-iteration-count", |
198 | 193 | "animation-direction" |
199 | 194 | ], |
200 | | - "block-opening-brace-space-before": "always", |
201 | | - "declaration-block-trailing-semicolon": "always", |
202 | | - "declaration-colon-space-after": "always", |
203 | | - "declaration-colon-space-before": "never", |
204 | | - "function-parentheses-space-inside": "never", |
205 | 195 | "function-url-no-scheme-relative": true, |
206 | 196 | "function-url-quotes": "always", |
207 | 197 | "length-zero-no-unit": true, |
208 | | - "no-eol-whitespace": true, |
209 | | - "number-no-trailing-zeros": true, |
210 | 198 | "property-no-unknown": true, |
211 | 199 | "property-no-vendor-prefix": true, |
212 | 200 | "scss/dollar-variable-colon-space-before": "never", |
213 | 201 | "scss/selector-no-redundant-nesting-selector": true, |
214 | | - "selector-pseudo-class-parentheses-space-inside": "never", |
215 | 202 | "shorthand-property-no-redundant-values": true, |
216 | | - "string-quotes": "double", |
217 | 203 | "unit-allowed-list": [ |
218 | 204 | "ch", |
219 | 205 | "em", |
|
244 | 230 | "dppx", |
245 | 231 | "%" |
246 | 232 | ], |
247 | | - "value-no-vendor-prefix": true |
| 233 | + "value-no-vendor-prefix": true, |
| 234 | + "@stylistic/declaration-bang-space-before": "always", |
| 235 | + "@stylistic/declaration-bang-space-after": "never", |
| 236 | + "@stylistic/no-missing-end-of-source-newline": true, |
| 237 | + "@stylistic/color-hex-case": "lower", |
| 238 | + "@stylistic/indentation": 2, |
| 239 | + "@stylistic/number-leading-zero": "never", |
| 240 | + "@stylistic/block-opening-brace-space-before": "always", |
| 241 | + "@stylistic/declaration-block-trailing-semicolon": "always", |
| 242 | + "@stylistic/declaration-colon-space-after": "always", |
| 243 | + "@stylistic/declaration-colon-space-before": "never", |
| 244 | + "@stylistic/function-parentheses-space-inside": "never", |
| 245 | + "@stylistic/no-eol-whitespace": true, |
| 246 | + "@stylistic/number-no-trailing-zeros": true, |
| 247 | + "@stylistic/selector-pseudo-class-parentheses-space-inside": "never", |
| 248 | + "@stylistic/string-quotes": "double" |
248 | 249 | } |
249 | 250 | } |
0 commit comments