-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
127 lines (127 loc) · 5.4 KB
/
.stylelintrc
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"customSyntax": "postcss-scss",
"extends": [
"stylelint-config-standard-scss"
],
"plugins": [
"@stylistic/stylelint-plugin"
],
"reportNeedlessDisables": true,
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"at-rule-no-vendor-prefix": true,
"block-no-empty": true,
"color-function-notation": "legacy",
"color-named": "never",
"color-no-invalid-hex": true,
"comment-no-empty": true,
"custom-property-empty-line-before": null,
"declaration-block-no-duplicate-properties": true,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-single-line-max-declarations": 1,
"declaration-empty-line-before": null,
"declaration-no-important": true,
"declaration-property-unit-allowed-list": {
"font-size": [
"rem"
]
},
"font-family-no-duplicate-names": true,
"font-family-no-missing-generic-family-keyword": true,
"font-weight-notation": "named-where-possible",
"function-calc-no-unspaced-operator": true,
"function-name-case": "lower",
"function-no-unknown": null,
"function-url-quotes": "always",
"length-zero-no-unit": true,
"media-feature-name-no-unknown": true,
"media-feature-name-no-vendor-prefix": 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-unknown-animations": true,
"property-disallowed-list": [
"aspect-ratio",
"gap"
],
"property-no-unknown": true,
"property-no-vendor-prefix": true,
"scss/at-rule-no-unknown": true,
"selector-attribute-quotes": "always",
"selector-no-vendor-prefix": true,
"selector-pseudo-class-no-unknown": true,
"selector-pseudo-element-colon-notation": "single",
"selector-pseudo-element-no-unknown": true,
"selector-type-case": "lower",
"selector-type-no-unknown": true,
"shorthand-property-no-redundant-values": null,
"string-no-newline": true,
"unit-disallowed-list": [
"em",
"cm"
],
"unit-no-unknown": true,
"value-keyword-case": "lower",
"value-no-vendor-prefix": true,
"@stylistic/at-rule-name-case": "lower",
"@stylistic/at-rule-name-space-after": "always",
"@stylistic/at-rule-semicolon-newline-after": "always",
"@stylistic/at-rule-semicolon-space-before": "never",
"@stylistic/block-closing-brace-newline-after": "always",
"@stylistic/block-closing-brace-newline-before": "always",
"@stylistic/block-opening-brace-newline-after": "always",
"@stylistic/block-opening-brace-space-before": "always",
"@stylistic/declaration-bang-space-after": "never",
"@stylistic/declaration-bang-space-before": "always",
"@stylistic/declaration-block-semicolon-newline-after": "always",
"@stylistic/declaration-block-semicolon-space-before": "never",
"@stylistic/declaration-block-trailing-semicolon": "always",
"@stylistic/declaration-colon-space-after": "always-single-line",
"@stylistic/declaration-colon-space-before": "never",
"@stylistic/function-comma-space-after": "always",
"@stylistic/function-comma-space-before": "never",
"@stylistic/function-max-empty-lines": 1,
"@stylistic/indentation": 2,
"@stylistic/linebreaks": null,
"@stylistic/max-empty-lines": 1,
"@stylistic/max-line-length": 140,
"@stylistic/media-feature-colon-space-after": "always",
"@stylistic/media-feature-colon-space-before": "never",
"@stylistic/media-feature-name-case": "lower",
"@stylistic/media-feature-parentheses-space-inside": "never",
"@stylistic/media-feature-range-operator-space-after": "always",
"@stylistic/media-feature-range-operator-space-before": "always",
"@stylistic/media-query-list-comma-newline-after": "never-multi-line",
"@stylistic/media-query-list-comma-space-after": "always",
"@stylistic/media-query-list-comma-space-before": "always",
"@stylistic/no-empty-first-line": true,
"@stylistic/no-extra-semicolons": true,
"@stylistic/number-leading-zero": "always",
"@stylistic/number-no-trailing-zeros": true,
"@stylistic/property-case": "lower",
"@stylistic/selector-attribute-brackets-space-inside": "never",
"@stylistic/selector-attribute-operator-space-after": "never",
"@stylistic/selector-attribute-operator-space-before": "never",
"@stylistic/selector-combinator-space-after": "always",
"@stylistic/selector-combinator-space-before": "always",
"@stylistic/selector-descendant-combinator-no-non-space": true,
"@stylistic/selector-list-comma-newline-after": "always-multi-line",
"@stylistic/selector-list-comma-space-after": "always-single-line",
"@stylistic/selector-list-comma-space-before": "never",
"@stylistic/selector-max-empty-lines": 1,
"@stylistic/selector-pseudo-class-case": "lower",
"@stylistic/selector-pseudo-class-parentheses-space-inside": "never",
"@stylistic/selector-pseudo-element-case": "lower",
"@stylistic/string-quotes": "single",
"@stylistic/unit-case": "lower",
"@stylistic/value-list-comma-newline-after": "always-multi-line",
"@stylistic/value-list-comma-newline-before": "never-multi-line",
"@stylistic/value-list-comma-space-after": "always-single-line",
"@stylistic/value-list-comma-space-before": "never",
"@stylistic/value-list-max-empty-lines": 0
}
}