-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc
executable file
·57 lines (57 loc) · 1.2 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"plugins": [
"stylelint-prettier"
],
"extends": [
"stylelint-prettier/recommended"
],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"declaration-colon-newline-after": null,
"declaration-empty-line-before": null,
"max-empty-lines": 4,
"indentation": 2,
"no-eol-whitespace": [
true,
{
"ignore": [
"empty-lines"
]
}
],
"number-leading-zero": null,
"no-empty-source": null,
"rule-empty-line-before": null,
"selector-list-comma-newline-after": "always-multi-line",
"selector-list-comma-space-after": "always-single-line",
"selector-pseudo-element-colon-notation": "double",
"selector-type-no-unknown": null,
"string-no-newline": null,
"string-quotes": "single",
"no-missing-end-of-source-newline": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"unit-whitelist": [
"em",
"rem",
"s",
"px",
"%",
"deg",
"ms",
"vh",
"vw",
"dppx",
"dpi",
"fr"
],
"prettier/prettier": [
true,
{
"singleQuote": true,
"tabWidth": 2
}
]
}
}