-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
28 lines (28 loc) · 1.09 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
{
"extends": ["stylelint-config-standard", "stylelint-config-standard-scss", "stylelint-config-prettier"],
"plugins": ["stylelint-order"],
"rules": {
"at-rule-no-unknown": null,
"block-no-empty": [true, {
"ignore": ["comments"]
}],
"block-opening-brace-space-before": "always",
"block-opening-brace-space-after": "always-single-line",
"block-closing-brace-space-before": "always-single-line",
"color-hex-case": "lower",
"color-hex-length": "long",
"declaration-block-semicolon-space-after": "always-single-line",
"declaration-colon-space-after": "always",
"function-comma-space-after": "always",
"function-whitespace-after": "always",
"length-zero-no-unit": true,
"indentation": 4,
"max-empty-lines": 2,
"no-descending-specificity": null,
"number-leading-zero": "always",
"order/properties-alphabetical-order": true,
"selector-pseudo-class-no-unknown": [true, {
"ignorePseudoClasses": ["global", "local"]
}]
}
}