-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
35 lines (35 loc) · 868 Bytes
/
.stylelintrc
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
{
"extends": [
"stylelint-config-recommended"
],
"plugins": [
"stylelint-no-unsupported-browser-features",
"stylelint-no-indistinguishable-colors"
],
"rules": {
"plugin/no-unsupported-browser-features": [
true,
{
"severity": "warning",
"ignore": [
"css-appearance"
]
}
],
"selector-no-vendor-prefix": null,
"property-no-vendor-prefix": true,
"value-no-vendor-prefix": true,
"at-rule-no-vendor-prefix": true,
"media-feature-name-no-vendor-prefix": true,
"selector-max-specificity": "0,3,1",
"plugin/stylelint-no-indistinguishable-colors": null,
"comment-whitespace-inside": null,
"string-quotes": "single",
"declaration-no-important": true,
"comment-empty-line-before": null
},
"ignoreFiles": [
"node_modules/**",
"build/**"
]
}