-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.stylelintrc
More file actions
33 lines (33 loc) · 787 Bytes
/
.stylelintrc
File metadata and controls
33 lines (33 loc) · 787 Bytes
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
{
"extends": "stylelint-config-recommended",
"rules": {
"font-family-no-missing-generic-family-keyword": null,
"no-duplicate-selectors": null,
"function-no-unknown": null,
"media-query-no-invalid": null,
"declaration-property-value-no-unknown": null,
"no-invalid-position-declaration": null,
"nesting-selector-no-missing-scoping-root": null,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/POSTCSS_.*/"
]
}
],
"selector-anb-no-unmatchable": null,
"declaration-block-no-duplicate-properties": null
},
"overrides": [
{
"files": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
],
"customSyntax": "postcss-styled-syntax"
}
]
}