-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc.json
32 lines (32 loc) · 1.04 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-rational-order",
"stylelint-config-recommended-scss"
],
"rules": {
"at-rule-empty-line-before": null,
"at-rule-name-space-after": "always-single-line",
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": [ "if", "else" ]
}
],
"color-hex-length": "long",
"comment-empty-line-before": null,
"declaration-empty-line-before": null,
"function-parentheses-newline-inside": null,
"number-leading-zero": "never",
"rule-empty-line-before": [
"always", {
"ignore": ["after-comment", "first-nested", "inside-block"]
}
],
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate"
}
}