-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path.stylelintrc.json
More file actions
52 lines (52 loc) · 930 Bytes
/
.stylelintrc.json
File metadata and controls
52 lines (52 loc) · 930 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
45
46
47
48
49
50
51
52
{
"plugins": ["stylelint-plugin-defensive-css"],
"extends": [
"stylelint-config-recommended",
"stylelint-config-standard-scss",
"stylelint-config-tailwindcss/scss"
],
"rules": {
"plugin/use-defensive-css": [
true,
{
"severity": "warning"
}
],
"at-rule-descriptor-no-unknown": [
true,
{
"severity": "warning"
}
],
"at-rule-descriptor-value-no-unknown": [
true,
{
"severity": "warning"
}
],
"at-rule-no-deprecated": [
true,
{
"severity": "warning"
}
],
"at-rule-prelude-no-invalid": [
true,
{
"severity": "warning"
}
],
"declaration-property-value-keyword-no-deprecated": [
true,
{
"severity": "warning"
}
],
"property-no-unknown": [
true,
{
"severity": "warning"
}
]
}
}