-
Notifications
You must be signed in to change notification settings - Fork 410
Expand file tree
/
Copy path.stylelintrc
More file actions
44 lines (44 loc) · 981 Bytes
/
Copy path.stylelintrc
File metadata and controls
44 lines (44 loc) · 981 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
34
35
36
37
38
39
40
41
42
43
44
{
"extends": ["stylelint-config-standard"],
"rules": {
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"property-no-unknown": [
true,
{
"ignoreProperties": ["composes"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "local"]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["mixin", "tailwind", "screen", "config", "reference"]
}
],
"at-rule-no-deprecated": [
true,
{
"ignoreAtRules": ["apply"]
}
],
"import-notation": null,
"no-invalid-position-at-import-rule": null,
"custom-property-pattern": null,
"selector-id-pattern": null,
"selector-class-pattern": null,
"keyframes-name-pattern": null,
"function-no-unknown": [
true,
{
"ignoreFunctions": ["a", "color-mod"]
}
],
"media-query-no-invalid": null
}
}