-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
49 lines (49 loc) · 1.27 KB
/
.stylelintrc
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
40
41
42
43
44
45
46
47
48
49
{
"plugins": [
"stylelint-scss",
"stylelint-prettier"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recommended-scss",
"stylelint-config-css-modules"
],
"parser": "typescript-eslint-parser",
"syntax": "scss",
"rules": {
"prettier/prettier": true,
"indentation": 2,
"string-quotes": "single",
"no-duplicate-selectors": true,
"block-no-empty": null,
"unit-whitelist": [
"px",
"rem",
"vw",
"vh",
"s",
"vmin",
"vmax",
"ex",
"ch",
"%"
],
"max-empty-lines": 2,
"color-hex-case": "upper",
"selector-max-id": 0,
"selector-combinator-space-after": "always",
"selector-attribute-quotes": "always",
"declaration-block-trailing-semicolon": "always",
"declaration-colon-space-before": "never",
"declaration-colon-space-after": "always",
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"number-leading-zero": "always",
"function-url-quotes": "always",
"comment-whitespace-inside": "always",
"media-feature-range-operator-space-before": "always",
"media-feature-range-operator-space-after": "always",
"media-feature-colon-space-before": null,
"media-feature-colon-space-after": "always"
}
}