-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.stylelintrc.json
More file actions
37 lines (36 loc) · 1.29 KB
/
.stylelintrc.json
File metadata and controls
37 lines (36 loc) · 1.29 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"],
"rules": {
"max-nesting-depth": [
3,
{
"ignoreAtRules": ["each", "for", "if", "else", "media", "supports"]
}
],
"selector-class-pattern": "^[a-z]([a-z0-9-]+)?(__([a-z0-9]+-?)+)?(--([a-z0-9]+-?)+)?$",
"scss/operator-no-unspaced": true,
"color-function-notation": "modern",
"alpha-value-notation": "percentage",
"property-no-vendor-prefix": true,
"declaration-block-no-duplicate-properties": true,
"keyframes-name-pattern": null,
"scss/at-use-no-unnamespaced": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global"]
}
],
"scss/at-extend-no-missing-placeholder": true,
"shorthand-property-no-redundant-values": true,
"length-zero-no-unit": true,
"no-descending-specificity": null,
"declaration-no-important": true,
"no-duplicate-selectors": true,
"color-no-hex": true,
"scss/dollar-variable-pattern": "^[a-z][a-z0-9]*(-[a-z0-9]+)*$",
"scss/at-rule-no-unknown": true,
"import-notation": null,
"no-invalid-position-at-import-rule": true
}
}