-
Notifications
You must be signed in to change notification settings - Fork 178
/
.stylelintrc
48 lines (48 loc) · 1.08 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
{
"extends": [
"stylelint-config-recommended"
],
"plugins": ["stylelint-prettier"],
"customSyntax": "postcss-syntax",
"rules": {
"font-family-name-quotes": null,
"font-family-no-missing-generic-family-keyword": null,
"font-weight-notation": null,
"function-name-case": null,
"prettier/prettier": true,
"selector-class-pattern": null,
"selector-type-no-unknown": [
true,
{
"ignore": ["custom-elements"],
"ignoreTypes": ["overlay", "container"]
}
],
"property-no-vendor-prefix": [
true,
{
"ignoreProperties": ["clip-path"]
}
],
"unit-no-unknown": [
true,
{
"ignoreUnits": ["/^`/", "/`$/"]
}
],
"value-keyword-case": null
},
"overrides": [
{
"files": ["*.js", ".ts", ".tsx"],
"customSyntax": "postcss-styled-syntax",
"rules": {
"annotation-no-unknown": null,
"block-no-empty": null,
"function-no-unknown": null,
"media-query-no-invalid": null,
"no-empty-source": null
}
}
]
}