-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelintrc.json
37 lines (37 loc) · 1.14 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
{
"rules": {
"at-rule-empty-line-before": [
"always",
{
"except": [
"blockless-group"
],
"ignore": [
"after-comment"
]
}
],
"color-hex-case": "lower",
"color-hex-length": "short",
"color-no-invalid-hex": true,
"declaration-bang-space-after": "never",
"declaration-bang-space-before": "always",
"declaration-block-semicolon-newline-after": "always",
"declaration-block-semicolon-space-before": "never",
"declaration-colon-newline-after": "always-multi-line",
"declaration-colon-space-after": "always-single-line",
"declaration-colon-space-before": "never",
"function-calc-no-unspaced-operator": true,
"function-comma-space-after": "always",
"function-comma-space-before": "never",
"function-linear-gradient-no-nonstandard-direction": true,
"function-parentheses-space-inside": "never",
"function-url-quotes": "none",
"function-whitespace-after": "always",
"indentation": 2,
"no-eol-whitespace": true,
"no-missing-eof-newline": true,
"rule-trailing-semicolon": "always",
"string-quotes": "double"
}
}