|
1 | 1 | {
|
2 |
| - "extends": "stylelint-config-standard-scss", |
3 |
| - "plugins": ["stylelint-scss"], |
| 2 | + "extends": ["stylelint-config-standard-scss"], |
| 3 | + "plugins": ["stylelint-scss", "stylelint-prettier"], |
4 | 4 | "rules": {
|
5 | 5 | "at-rule-disallowed-list": ["debug", {
|
6 | 6 | "severity": "warning"
|
7 | 7 | }],
|
8 |
| - "block-closing-brace-empty-line-before": "never", |
9 |
| - "block-closing-brace-newline-after": "always-single-line", |
10 | 8 | "block-no-empty": true,
|
11 |
| - "color-hex-case": "lower", |
12 | 9 | "color-hex-length": "short",
|
13 | 10 | "color-no-invalid-hex": true,
|
14 | 11 | "comment-no-empty": true,
|
15 | 12 | "custom-property-pattern": "(?:igc-)?.+",
|
16 | 13 | "declaration-block-no-duplicate-properties": true,
|
17 | 14 | "declaration-block-no-shorthand-property-overrides": true,
|
18 | 15 | "declaration-block-single-line-max-declarations": 1,
|
19 |
| - "declaration-colon-space-after": "always-single-line", |
20 | 16 | "font-family-no-duplicate-names": true,
|
21 | 17 | "font-family-no-missing-generic-family-keyword": true,
|
22 | 18 | "font-weight-notation": "numeric",
|
23 | 19 | "function-calc-no-unspaced-operator": true,
|
24 |
| - "function-comma-space-after": "always-single-line", |
25 |
| - "indentation": 4, |
26 | 20 | "length-zero-no-unit": true,
|
27 | 21 | "max-nesting-depth": [3, {
|
28 | 22 | "severity": "warning"
|
29 | 23 | }],
|
30 | 24 | "no-descending-specificity": null,
|
31 | 25 | "no-duplicate-at-import-rules": true,
|
32 | 26 | "no-duplicate-selectors": true,
|
33 |
| - "no-extra-semicolons": true, |
34 | 27 | "no-invalid-double-slash-comments": true,
|
35 |
| - "no-missing-end-of-source-newline": true, |
36 |
| - "number-leading-zero": "never", |
37 |
| - "number-no-trailing-zeros": true, |
38 | 28 | "property-no-unknown": true,
|
39 | 29 | "rule-empty-line-before": ["always-multi-line", {
|
40 | 30 | "except": ["first-nested"],
|
41 | 31 | "ignore": ["after-comment"]
|
42 | 32 | }],
|
43 | 33 | "selector-attribute-quotes": "always",
|
44 |
| - "selector-attribute-operator-space-after": "never", |
45 |
| - "selector-attribute-operator-space-before": "never", |
46 |
| - "selector-combinator-space-after": "always", |
47 |
| - "selector-combinator-space-before": "always", |
48 |
| - "selector-descendant-combinator-no-non-space": true, |
49 |
| - "selector-list-comma-newline-after": "always", |
50 |
| - "selector-pseudo-class-case": "lower", |
51 | 34 | "selector-pseudo-class-no-unknown": true,
|
52 |
| - "selector-pseudo-class-parentheses-space-inside": "never", |
53 |
| - "selector-pseudo-element-case": "lower", |
54 | 35 | "selector-pseudo-element-colon-notation": "double",
|
55 | 36 | "selector-pseudo-element-no-unknown": true,
|
56 | 37 | "selector-type-case": "lower",
|
57 | 38 | "selector-type-no-unknown": [true, {
|
58 | 39 | "ignore": ["custom-elements"]
|
59 | 40 | }],
|
60 | 41 | "shorthand-property-no-redundant-values": true,
|
61 |
| - "string-quotes": "single", |
62 |
| - "unit-case": "lower", |
63 | 42 | "value-keyword-case": "lower",
|
64 |
| - "value-list-comma-space-after": "always-single-line", |
65 | 43 | "value-no-vendor-prefix": true,
|
66 | 44 | "scss/at-mixin-pattern": null,
|
67 | 45 | "scss/at-function-pattern": null,
|
|
0 commit comments