-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.stylelintrc.json
50 lines (39 loc) · 1.06 KB
/
.stylelintrc.json
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
{
"rules": {
"at-rule-empty-line-before": [
"always",
{
"except": [
"first-nested",
"blockless-after-same-name-blockless"
],
"ignore": ["after-comment"]
}
],
"at-rule-name-case": "lower",
"at-rule-name-space-after": "always-single-line",
"color-no-invalid-hex": true,
"block-opening-brace-space-before": "always",
"color-hex-case": "upper",
"color-named": "never",
"declaration-colon-space-after": "always",
"declaration-block-semicolon-newline-after": "always",
"declaration-block-no-duplicate-properties": true,
"font-family-no-duplicate-names": true,
"indentation": 2,
"max-empty-lines": 1,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"no-empty-source": true,
"no-extra-semicolons": true,
"no-invalid-double-slash-comments": true,
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"unit-blacklist": ["em"]
}
}