forked from reservamos/item-quantity-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
32 lines (32 loc) · 948 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
{
"extends": "stylelint-config-standard",
"rules": {
"at-rule-empty-line-before": [
"always",
{
"except": ["blockless-after-blockless", "inside-block"],
"ignore": ["after-comment", "inside-block"]
}
],
"at-rule-name-case": "lower",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["import", "mixin", "extend", "include", "each"]
}
],
"at-rule-no-vendor-prefix": true,
"color-hex-case": "upper",
"color-hex-length": "long",
"color-named": "never",
"declaration-empty-line-before": "never",
"declaration-no-important": true,
"font-weight-notation": "numeric",
"no-descending-specificity": [true, { "severity": "warning" }],
"selector-class-pattern": "^([a-z][a-z]*)(-[a-z]+)*$",
"selector-max-id": 0,
"shorthand-property-no-redundant-values": true,
"string-quotes": "single",
"value-no-vendor-prefix": true
}
}