-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
34 lines (34 loc) · 1.1 KB
/
.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
{
"extends": ["stylelint-config-standard", "stylelint-css-modules"],
"rules": {
"at-rule-empty-line-before": null,
"declaration-empty-line-before": null,
"custom-property-empty-line-before": null,
"declaration-block-no-redundant-longhand-properties": null,
"alpha-value-notation": null,
"at-rule-no-vendor-prefix": true,
"block-no-empty": null,
"color-function-notation": null,
"color-no-hex": null,
"color-no-invalid-hex": true,
"custom-property-pattern": null,
"font-family-name-quotes": "always-unless-keyword",
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"max-nesting-depth": 3,
"selector-class-pattern": null,
"rule-empty-line-before": [
"always",
{
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "local"]
}
]
}
}