|
1 | 1 | {
|
2 |
| - "extends": [ |
3 |
| - "stylelint-config-standard", |
4 |
| - "stylelint-config-standard-scss", |
5 |
| - "stylelint-prettier/recommended" |
6 |
| - ], |
7 |
| - "plugins": ["stylelint-scss","stylelint-prettier"], |
| 2 | + "extends": ["stylelint-config-standard", "stylelint-config-standard-scss"], |
| 3 | + "plugins": ["stylelint-scss", "stylelint-prettier"], |
8 | 4 | "rules": {
|
9 | 5 | "prettier/prettier": true,
|
10 | 6 | "scss/dollar-variable-pattern": null,
|
11 | 7 | "number-leading-zero": null,
|
12 | 8 | "at-rule-no-unknown": null,
|
13 | 9 | "scss/at-rule-no-unknown": true,
|
14 |
| - "unit-allowed-list": ["em", "rem", "%", "px", "fr", "vh", "ms", "s", "vw","deg"], |
| 10 | + "unit-allowed-list": [ |
| 11 | + "em", |
| 12 | + "rem", |
| 13 | + "%", |
| 14 | + "px", |
| 15 | + "fr", |
| 16 | + "vh", |
| 17 | + "ms", |
| 18 | + "s", |
| 19 | + "vw", |
| 20 | + "deg" |
| 21 | + ], |
15 | 22 | "rule-empty-line-before": null,
|
16 | 23 | "no-duplicate-selectors": true,
|
17 | 24 | "color-hex-length": "long",
|
18 | 25 | "color-named": null,
|
19 |
| - "selector-no-qualifying-type": [true, {"ignore": ["attribute"]}], |
| 26 | + "selector-no-qualifying-type": [true, { "ignore": ["attribute"] }], |
20 | 27 | "declaration-no-important": true,
|
21 | 28 | "function-url-quotes": "always",
|
22 | 29 | "font-family-name-quotes": "always-where-recommended",
|
|
27 | 34 | "media-feature-range-operator-space-after": "always",
|
28 | 35 | "no-descending-specificity": true,
|
29 | 36 | "font-family-no-duplicate-names": true,
|
30 |
| - "font-family-no-missing-generic-family-keyword":null, |
31 |
| - "keyframe-block-no-duplicate-selectors" : true |
32 |
| - |
| 37 | + "font-family-no-missing-generic-family-keyword": null, |
| 38 | + "keyframe-block-no-duplicate-selectors": true |
33 | 39 | },
|
34 | 40 | "overrides": [
|
35 | 41 | {
|
|
0 commit comments