-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
37 lines (37 loc) · 910 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
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-clean-order/error"
],
"plugins": ["stylelint-use-logical-spec"],
"rules": {
"liberty/use-logical-spec": true,
"scss/at-extend-no-missing-placeholder": null,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["tailwind"]
}
],
"at-rule-no-unknown": null,
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"property-no-vendor-prefix": true,
"selector-no-vendor-prefix": true,
"selector-pseudo-element-colon-notation": "single",
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": ["ng-deep"]
}
],
"selector-type-no-unknown": null,
"value-no-vendor-prefix": true
},
"overrides": [
{
"files": ["**/*.html"],
"customSyntax": "postcss-html"
}
]
}