-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
22 lines (22 loc) · 843 Bytes
/
Copy path.stylelintrc
File metadata and controls
22 lines (22 loc) · 843 Bytes
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-recommended",
"rules": {
"color-hex-case": "lower",
"max-nesting-depth": 4,
"property-no-vendor-prefix": true,
"max-empty-lines": 1,
"indentation": 2,
"function-calc-no-unspaced-operator": true,
"string-quotes": "double",
"no-duplicate-selectors": true,
"selector-max-id": 0,
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"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"
}
}