-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
31 lines (31 loc) · 1.09 KB
/
.stylelintrc.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"extends": ["stylelint-config-standard-scss", "stylelint-config-prettier"],
"rules": {
"comment-no-empty": true,
"no-duplicate-at-import-rules": true,
"no-duplicate-selectors": true,
"no-extra-semicolons": true,
"alpha-value-notation": "number",
"color-function-notation": "legacy",
"color-named": "never",
"length-zero-no-unit": true,
"font-weight-notation": "numeric",
"number-max-precision": 2,
"no-unknown-animations": true,
"font-family-name-quotes": "always-unless-keyword",
"number-leading-zero": "never",
"number-no-trailing-zeros": true,
"custom-property-empty-line-before": "never",
"declaration-block-semicolon-newline-after": "always",
"declaration-block-trailing-semicolon": "always",
"block-closing-brace-empty-line-before": "never",
"block-closing-brace-newline-after": "always",
"block-opening-brace-newline-after": "always",
"rule-empty-line-before": "always",
"max-empty-lines": 1,
"no-eol-whitespace": true,
"no-empty-first-line": true,
"indentation": 2,
"string-quotes": "single"
}
}