-
Notifications
You must be signed in to change notification settings - Fork 138
/
.stylelintrc
35 lines (35 loc) · 952 Bytes
/
.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
{
"plugins": [
"stylelint-order"
],
"rules": {
"color-hex-case": ["lower"],
"color-hex-length": "short",
"declaration-block-no-duplicate-properties": [
true,
{
"ignore": [
"consecutive-duplicates-with-different-values"
]
}
],
"function-comma-space-after": "always-single-line",
"function-comma-space-before": "never",
"indentation": 4,
"length-zero-no-unit": true,
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"property-case": "lower",
"property-no-unknown": true,
"selector-combinator-space-after": "always",
"selector-combinator-space-before": "always",
"selector-list-comma-newline-after": "always",
"shorthand-property-no-redundant-values": true,
"string-quotes": "single"
}
}