-
-
Notifications
You must be signed in to change notification settings - Fork 134
Expand file tree
/
Copy path.stylelintrc
More file actions
41 lines (41 loc) · 693 Bytes
/
.stylelintrc
File metadata and controls
41 lines (41 loc) · 693 Bytes
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
{
"rules": {
"block-no-empty": true,
"color-no-invalid-hex": true,
"comment-empty-line-before": [
"always",
{
"ignore": ["stylelint-commands", "after-comment"]
}
],
"declaration-colon-space-after": "always",
"indentation": [
"tab",
{
"except": ["value"]
}
],
"max-empty-lines": 2,
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"unit-allowed-list": [
"px",
"em",
"rem",
"vw",
"vh",
"deg",
"ms",
"%",
"s",
"dpi",
"pt",
"fr"
]
}
}