|
1 | 1 | { |
2 | | -"extends": ["stylelint-config-standard", "stylelint-config-rational-order", "stylelint-config-prettier"], |
3 | | -"plugins": ["stylelint-order", "stylelint-scss"], |
| 2 | +"extends": [ |
| 3 | +"stylelint-config-standard", |
| 4 | +"stylelint-config-rational-order", |
| 5 | +"stylelint-config-prettier" |
| 6 | +], |
| 7 | +"plugins": [ |
| 8 | +"stylelint-order", |
| 9 | +"stylelint-scss" |
| 10 | +], |
4 | 11 | "rules": { |
5 | 12 | "indentation": "tab", |
6 | | -"order/order": ["dollar-variables", "custom-properties", "declarations", "at-variables", "rules"], |
| 13 | +"order/order": [ |
| 14 | +"dollar-variables", |
| 15 | +"custom-properties", |
| 16 | +"declarations", |
| 17 | +"at-variables", |
| 18 | +"rules" |
| 19 | +], |
7 | 20 | "at-rule-no-unknown": null, |
8 | 21 | "scss/at-rule-no-unknown": true, |
9 | 22 | "selector-pseudo-class-no-unknown": [ |
10 | 23 | true, |
11 | 24 | { |
12 | | -"ignorePseudoClasses": ["deep", "slotted", "global"] |
| 25 | +"ignorePseudoClasses": [ |
| 26 | +"deep", |
| 27 | +"slotted", |
| 28 | +"global" |
| 29 | +] |
13 | 30 | } |
14 | 31 | ], |
15 | 32 | "string-quotes": "single", |
16 | 33 | "length-zero-no-unit": null, |
17 | 34 | "no-descending-specificity": true, |
18 | | -"rule-empty-line-before": ["always", { "except": "first-nested" }], |
| 35 | +"rule-empty-line-before": [ |
| 36 | +"always", |
| 37 | +{ |
| 38 | +"except": "first-nested" |
| 39 | +} |
| 40 | +], |
19 | 41 | "block-closing-brace-empty-line-before": "never", |
20 | 42 | "block-opening-brace-newline-after": "always-multi-line" |
21 | 43 | } |
|
0 commit comments