-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy path.stylelintrc.json
More file actions
34 lines (33 loc) · 988 Bytes
/
.stylelintrc.json
File metadata and controls
34 lines (33 loc) · 988 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-standard"],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind", "apply", "variants", "responsive", "screen", "layer", "import", "plugin", "theme"]
}
],
"function-no-unknown": [
true,
{
"ignoreFunctions": ["theme", "screen"]
}
],
"custom-property-pattern": null,
"selector-class-pattern": null,
"no-descending-specificity": null,
"import-notation": null,
"at-rule-empty-line-before": null,
"rule-empty-line-before": null,
"keyframes-name-pattern": null,
"alpha-value-notation": null,
"color-function-notation": null,
"color-function-alias-notation": null,
"font-family-name-quotes": null,
"property-no-vendor-prefix": null,
"declaration-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-block-single-line-max-declarations": null,
"property-no-deprecated": null
}
}