-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
43 lines (43 loc) · 1.04 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
{
"extends": [
"stylelint-scss",
"stylelint-config-prettier",
"stylelint-config-standard"
],
"rules": {
"indentation": "tab",
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "upper",
"color-named": "always-where-possible",
"selector-combinator-space-after": "always",
"selector-attribute-operator-space-before": "always",
"selector-attribute-operator-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"number-leading-zero": "always",
"comment-empty-line-before": "always",
"rule-empty-line-before": "always-multi-line",
"selector-pseudo-element-colon-notation": "double",
"media-feature-parentheses-space-inside": "always",
"value-keyword-case": "lower",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extends",
"ignores"
]
}
],
"unit-whitelist": [
"em",
"rem",
"s",
"%",
"px"
],
"block-closing-brace-newline-after": "always"
}
}