-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.stylelintrc.json
More file actions
50 lines (50 loc) · 1.31 KB
/
Copy path.stylelintrc.json
File metadata and controls
50 lines (50 loc) · 1.31 KB
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
49
50
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"tailwind",
"apply",
"layer",
"screen",
"variants",
"responsive",
"source",
"config",
"custom-variant",
"theme",
"plugin"
]
}
],
"selector-class-pattern": null,
"no-descending-specificity": null,
"custom-property-pattern": null,
"declaration-block-no-redundant-longhand-properties": null,
"import-notation": null,
"comment-empty-line-before": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-empty-line-before": null,
"color-function-notation": null,
"color-function-alias-notation": null,
"alpha-value-notation": null,
"color-hex-length": null,
"value-keyword-case": null,
"keyframes-name-pattern": null,
"selector-not-notation": null,
"no-duplicate-selectors": null,
"property-no-vendor-prefix": null,
"font-family-name-quotes": null,
"media-feature-range-notation": null,
"property-no-deprecated": null
},
"ignoreFiles": [
"web/static/tailwind.css",
"web/static/vendor/**",
"node_modules/**"
]
}