-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc.json
32 lines (32 loc) · 878 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": {
"color-no-hex": true,
"at-rule-empty-line-before": [
"always",
{
"except": [
"blockless-after-same-name-blockless",
"first-nested"
],
"ignore": [
"after-comment"
]
}
],
"number-max-precision": 5,
"no-descending-specificity": null,
"media-feature-range-notation": "prefix",
"selector-class-pattern": "_?[a-z0-9]+(-[a-z0-9]+)*$",
"selector-id-pattern": "_?[a-z0-9]+(-[a-z0-9]+)*$",
"selector-type-case": [
"lower",
{
"ignoreTypes": [
"/regex/",
"non-regex"
]
}
]
}
}