-
Notifications
You must be signed in to change notification settings - Fork 2
/
.stylelintrc
40 lines (40 loc) · 1.45 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
{
"processors": [
"stylelint-processor-styled-components"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-styled-components",
"stylelint-config-prettier"
],
"rules": {
"block-closing-brace-empty-line-before": null,
"color-named": "always-where-possible",
"comment-empty-line-before": null,
"comment-whitespace-inside": null,
"declaration-block-no-redundant-longhand-properties": [true, {"ignoreShorthands": ["grid-template"]}],
"declaration-block-no-shorthand-property-overrides": true,
"declaration-block-trailing-semicolon": null,
"declaration-empty-line-before": null,
"declaration-no-important": true,
"font-family-name-quotes": "always-where-recommended",
"function-url-quotes": "never",
"media-feature-name-case": "lower",
"no-duplicate-selectors": true,
"no-extra-semicolons": true,
"number-max-precision": 2,
"property-no-unknown": [true, {"checkPrefixed": true, "ignoreProperties": ["/-styled-mixin/"]}],
"property-no-vendor-prefix": null,
"selector-list-comma-newline-after": null,
"selector-max-id": 0,
"selector-max-universal": 0,
"selector-no-qualifying-type": [true, {"ignore": ["attribute"]}],
"selector-no-vendor-prefix": null,
"selector-type-no-unknown": [true, {
"ignoreTypes": ["/^-styled-mixin/"]
}],
"shorthand-property-no-redundant-values": true,
"string-quotes": "single",
"value-keyword-case": "lower",
}
}