-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy path.stylelintrc.json
More file actions
37 lines (37 loc) · 1.22 KB
/
.stylelintrc.json
File metadata and controls
37 lines (37 loc) · 1.22 KB
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-idiomatic-order"
],
"plugins": [
"@stylistic/stylelint-plugin",
"stylelint-declaration-block-no-ignored-properties",
"stylelint-no-nested-media",
"stylelint-plugin-defensive-css",
"stylelint-high-performance-animation",
"stylelint-gamut"
],
"rules": {
"plugin/declaration-block-no-ignored-properties": true,
"pitcher/no-nested-media": true,
"plugin/use-defensive-css": [
true,
{
"accidental-hover": true,
"background-repeat": true,
"custom-property-fallbacks": false,
"flex-wrapping": true,
"scroll-chaining": true,
"vendor-prefix-grouping": true
}
],
"plugin/no-low-performance-animation-properties": true,
"gamut/color-no-out-gamut-range": true,
"no-descending-specificity": null,
"selector-class-pattern": null,
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null,
"@stylistic/indentation": 2,
"@stylistic/declaration-colon-space-after": "always"
}
}