-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
42 lines (42 loc) · 1.02 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
{
"extends": ["stylelint-config-standard", "stylelint-config-prettier"],
"ignoreFiles": [
"**/*.ts",
"**/*.tsx",
"**/*.png",
"**/*.jpg",
"**/*.jpeg",
"**/*.gif",
"**/*.mp3",
"**/*.json"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["extends", "ignores"]
}
],
"indentation": 2,
"number-leading-zero": null,
"unit-allowed-list": ["em", "rem", "s", "px", "deg", "all", "vw", "vh", "%"],
"no-eol-whitespace": [
true,
{
"ignore": ["empty-lines"]
}
],
"declaration-block-trailing-semicolon": "always",
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
],
"block-closing-brace-newline-after": "always",
"declaration-block-semicolon-newline-after": "always",
"no-descending-specificity": null,
"selector-list-comma-newline-after": "always",
"selector-pseudo-element-colon-notation": "single"
}
}