-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.stylelintrc
30 lines (30 loc) · 852 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
{
"rules": {
"indentation": ["tab"],
"function-comma-space-after": "always",
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"]
}
],
"declaration-block-semicolon-newline-after": "always",
"declaration-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment", "after-declaration"]
}
],
"block-closing-brace-empty-line-before": "never",
"at-rule-semicolon-newline-after": "always",
"color-hex-case": "lower",
"selector-list-comma-newline-after": "always",
"declaration-block-trailing-semicolon": "always",
"shorthand-property-no-redundant-values": true,
"selector-max-empty-lines": 0,
"function-max-empty-lines": 0,
"max-empty-lines": 1,
"number-leading-zero": "always"
}
}