-
Notifications
You must be signed in to change notification settings - Fork 4
/
stylelint.config.js
101 lines (101 loc) · 3.6 KB
/
stylelint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
export default {
ignoreFiles: ["**/*.min.css"],
rules: {
"alpha-value-notation": null,
"annotation-no-unknown": true,
"at-rule-empty-line-before": null,
"at-rule-no-unknown": true,
"at-rule-no-vendor-prefix": true,
"block-no-empty": true,
"color-function-notation": null,
"color-hex-length": null,
"color-no-hex": true,
"color-no-invalid-hex": true,
"comment-empty-line-before": null,
"comment-no-empty": true,
"comment-whitespace-inside": null,
"custom-property-empty-line-before": null,
"custom-property-no-missing-var-function": true,
"declaration-block-no-duplicate-custom-properties": true,
"declaration-block-no-duplicate-properties": [
true,
{
ignore: ["consecutive-duplicates-with-different-values"],
},
],
"declaration-block-no-redundant-longhand-properties": true,
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-single-line-max-declarations": null,
"declaration-empty-line-before": null,
"declaration-no-important": true,
"declaration-property-max-values": null,
"declaration-property-value-no-unknown": true,
"font-family-name-quotes": null,
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"font-weight-notation": null,
"function-calc-no-unspaced-operator": true,
"function-linear-gradient-no-nonstandard-direction": true,
"function-name-case": null,
"function-no-unknown": true,
"function-url-no-scheme-relative": true,
"function-url-quotes": null,
"hue-degree-notation": null,
"import-notation": null,
"keyframe-block-no-duplicate-selectors": true,
"keyframe-declaration-no-important": true,
"keyframe-selector-notation": null,
"length-zero-no-unit": true,
"lightness-notation": null,
"max-nesting-depth": null,
"media-feature-name-no-unknown": true,
"media-feature-name-no-vendor-prefix": true,
"media-feature-name-value-no-unknown": true,
"media-feature-range-notation": null,
"media-query-no-invalid": true,
"named-grid-areas-no-invalid": true,
"no-descending-specificity": null,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"no-empty-source": true,
"no-invalid-double-slash-comments": true,
"no-invalid-position-at-import-rule": true,
"no-irregular-whitespace": true,
"no-unknown-animations": true,
"no-unknown-custom-media": true,
"no-unknown-custom-properties": true,
"number-max-precision": null,
"property-no-unknown": true,
"rule-empty-line-before": null,
"selector-anb-no-unmatchable": true,
"selector-attribute-quotes": null,
"selector-max-attribute": null,
"selector-max-class": null,
"selector-max-combinators": null,
"selector-max-compound-selectors": null,
"selector-max-id": null,
"selector-max-pseudo-class": null,
"selector-max-specificity": null,
"selector-max-type": null,
"selector-max-universal": null,
"selector-no-qualifying-type": [
true,
{
ignore: ["attribute", "class"],
},
],
"selector-no-vendor-prefix": true,
"selector-not-notation": null,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-colon-notation": null,
"selector-pseudo-element-no-unknown": true,
"selector-type-case": null,
"selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": true,
"string-no-newline": true,
"time-min-milliseconds": null,
"unit-no-unknown": true,
"value-keyword-case": null,
"value-no-vendor-prefix": true,
},
};