-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
.stylelintrc.json
47 lines (47 loc) · 980 Bytes
/
.stylelintrc.json
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
{
"extends": [
"@wordpress/stylelint-config",
"stylelint-config-prettier"
],
"rules": {
"at-rule-empty-line-before": null,
"declaration-colon-newline-after": null,
"function-parentheses-space-inside": null,
"function-url-quotes": null,
"no-descending-specificity": null,
"rule-empty-line-before": null,
"selector-class-pattern": null,
"selector-id-pattern": null,
"selector-pseudo-class-parentheses-space-inside": null,
"declaration-no-important": null,
"color-hex-length": null,
"no-duplicate-selectors": null,
"font-family-no-missing-generic-family-keyword": null,
"font-family-name-quotes": null,
"string-quotes": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"mixin",
"include",
"tailwind",
"apply",
"layer",
"variants",
"responsive",
"screen"
]
}
]
},
"overrides": [
{
"files": [
"*.scss",
"**/*.scss"
],
"customSyntax": "postcss-scss"
}
]
}