|
1 | 1 | {
|
2 |
| - "extends": "stylelint-config-sass-guidelines", |
3 |
| - "plugins": ["stylelint-prettier"], |
4 |
| - "rules": { |
5 |
| - "indentation": 4, |
6 |
| - "max-nesting-depth": 6, |
7 |
| - "selector-max-compound-selectors": 6, |
8 |
| - "scss/at-import-partial-extension-blacklist": "off", |
9 |
| - "scss/at-extend-no-missing-placeholder": null, |
10 |
| - "selector-no-qualifying-type": null, |
11 |
| - "order/properties-alphabetical-order": null, |
12 |
| - "order/order": null, |
13 |
| - "property-no-vendor-prefix": [ |
14 |
| - true, |
15 |
| - { |
16 |
| - "ignoreProperties": ["box-orient"] |
17 |
| - } |
18 |
| - ], |
19 |
| - "value-no-vendor-prefix": [ |
20 |
| - true, |
21 |
| - { |
22 |
| - "ignoreValues": ["box"] |
23 |
| - } |
24 |
| - ], |
25 |
| - "selector-pseudo-element-no-unknown": [ |
26 |
| - true, |
27 |
| - { |
28 |
| - "ignorePseudoElements": ["ng-deep"] |
29 |
| - } |
30 |
| - ], |
31 |
| - "selector-class-pattern": [ |
32 |
| - "^([a-z][a-z]*)(-[a-z]+)*(__([a-z][a-z]*)(-[a-z]+)*)*(_([a-z][a-z]*)(-[a-z]+)*)*$", |
33 |
| - { |
34 |
| - "resolveNestedSelectors": true |
35 |
| - } |
36 |
| - ] |
37 |
| - } |
| 2 | + "extends": "stylelint-config-sass-guidelines", |
| 3 | + "plugins": ["stylelint-prettier"], |
| 4 | + "rules": { |
| 5 | + "indentation": 4, |
| 6 | + "max-nesting-depth": 6, |
| 7 | + "selector-max-compound-selectors": 6, |
| 8 | + "scss/at-import-partial-extension-blacklist": "off", |
| 9 | + "scss/at-extend-no-missing-placeholder": null, |
| 10 | + "selector-no-qualifying-type": null, |
| 11 | + "order/properties-alphabetical-order": null, |
| 12 | + "order/order": null, |
| 13 | + "property-no-vendor-prefix": [ |
| 14 | + true, |
| 15 | + { |
| 16 | + "ignoreProperties": ["box-orient"] |
| 17 | + } |
| 18 | + ], |
| 19 | + "value-no-vendor-prefix": [ |
| 20 | + true, |
| 21 | + { |
| 22 | + "ignoreValues": ["box"] |
| 23 | + } |
| 24 | + ], |
| 25 | + "selector-pseudo-element-no-unknown": [ |
| 26 | + true, |
| 27 | + { |
| 28 | + "ignorePseudoElements": ["ng-deep"] |
| 29 | + } |
| 30 | + ], |
| 31 | + "selector-class-pattern": [ |
| 32 | + "^([a-z][a-z]*)(-[a-z]+)*(__([a-z][a-z]*)(-[a-z]+)*)*(_([a-z][a-z]*)(-[a-z]+)*)*$", |
| 33 | + { |
| 34 | + "resolveNestedSelectors": true |
| 35 | + } |
| 36 | + ] |
| 37 | + } |
38 | 38 | }
|
0 commit comments