forked from 4gray/iptvnator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
38 lines (38 loc) · 965 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
38
{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^mat-/"
]
}
],
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": ["ng-deep"]
}
],
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["function", "if", "each", "include", "mixin"]
}
],
"media-feature-name-no-unknown": [
true,
{
"ignoreMediaFeatureNames": ["display-mode"]
}
],
"value-keyword-case": null,
"string-quotes": "single",
"value-no-vendor-prefix": null,
"property-no-vendor-prefix": null
},
"plugins": ["stylelint-scss"],
"syntax": "scss"
}