-
Notifications
You must be signed in to change notification settings - Fork 3
/
.stylelintrc.json
24 lines (24 loc) · 1.01 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
{
"extends": ["stylelint-config-standard-scss"],
"rules": {
"at-rule-no-unknown": null,
"at-rule-empty-line-before": null,
"block-closing-brace-newline-after": ["always", { "ignoreAtRules": ["if", "else"] }],
"block-opening-brace-space-before": "always",
"block-opening-brace-newline-after": "always",
"block-closing-brace-newline-before": "always",
"block-closing-brace-empty-line-before": "never",
"custom-property-pattern": null,
"declaration-block-trailing-semicolon": "always",
"declaration-empty-line-before": null,
"declaration-block-semicolon-newline-after": "always-multi-line",
"font-family-name-quotes": "always-where-required",
"indentation": 2,
"max-line-length": null,
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"scss/double-slash-comment-empty-line-before": null,
"scss/dollar-variable-empty-line-before": null,
"scss/at-rule-no-unknown": true
}
}