-
Notifications
You must be signed in to change notification settings - Fork 17
/
.stylelintrc
38 lines (38 loc) · 873 Bytes
/
.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
{
"extends": [
"stylelint-config-rational-order",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-prettier"
],
"rules": {
"prettier/prettier": true,
"color-hex-length": "long",
"comment-empty-line-before": "always",
"comment-whitespace-inside": "always",
"custom-property-empty-line-before": "never",
"declaration-empty-line-before": "never",
"font-family-name-quotes": "always-unless-keyword",
"font-weight-notation": "named-where-possible",
"function-name-case": "lower",
"function-url-quotes": [
"always",
{
"except": [
"empty"
]
}
],
"length-zero-no-unit": true,
"rule-empty-line-before": [
"always-multi-line",
{
"except": [
"after-single-line-comment",
"first-nested"
]
}
]
}
}