generated from AleksandrHovhannisyan/11ty-sass-images-seo
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.stylelintrc.json
22 lines (22 loc) · 946 Bytes
/
.stylelintrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"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",
"declaration-block-trailing-semicolon": "always",
"declaration-empty-line-before": "never",
"declaration-block-semicolon-newline-after": "always-multi-line",
"font-family-name-quotes": "always-where-required",
"no-eol-whitespace": null,
"indentation": 2,
"max-line-length": [120, { "ignore": "comments" }],
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"scss/at-rule-no-unknown": true
}
}