-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc
More file actions
39 lines (39 loc) · 1.34 KB
/
Copy path.stylelintrc
File metadata and controls
39 lines (39 loc) · 1.34 KB
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
33
34
35
36
37
38
39
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-rational-order"
],
"rules": {
"indentation": 2,
"color-hex-case": "lower",
"color-hex-length": "short",
"color-named": "never",
"font-weight-notation": "numeric",
"function-whitespace-after": "always",
"number-leading-zero": "never",
"number-no-trailing-zeros": true,
"number-max-precision": 3,
"string-quotes": "single",
"length-zero-no-unit": true,
"value-list-comma-space-after": "always",
"declaration-block-no-duplicate-properties": true,
"declaration-block-semicolon-newline-after": "always",
"block-opening-brace-space-before": "always",
"block-opening-brace-newline-after": "always",
"block-closing-brace-newline-before": "always",
"block-closing-brace-newline-after": "always",
"block-no-empty": true,
"selector-combinator-space-after": "always",
"selector-descendant-combinator-no-non-space": true,
"selector-list-comma-newline-after": "always",
"comment-no-empty": true,
"max-nesting-depth": 5,
"no-descending-specificity": true,
"no-duplicate-selectors": true,
"no-empty-source": true,
"no-eol-whitespace": true,
"no-extra-semicolons": true,
"no-missing-end-of-source-newline": true
}
}