-
-
Notifications
You must be signed in to change notification settings - Fork 199
/
.stylelintrc.json
28 lines (28 loc) · 1004 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
23
24
25
26
27
28
{
"extends": "stylelint-config-recommended",
"rules": {
"max-nesting-depth": 3,
"property-no-vendor-prefix": true,
"max-empty-lines": 2,
"indentation": 2,
"function-calc-no-unspaced-operator": true,
"string-quotes": "double",
"no-duplicate-selectors": null,
"at-rule-no-unknown": null,
"color-hex-case": null,
"color-named": "never",
"selector-max-id": 0,
"selector-combinator-space-after": "always",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"rule-empty-line-before": ["always-multi-line", {
"ignore": ["after-comment", "first-nested", "inside-block"]
}],
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-parentheses-space-inside": "never",
"media-feature-colon-space-before": "never",
"media-feature-colon-space-after": "always"
}
}