forked from WeakAuras/WeakAuras-Companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
31 lines (31 loc) · 945 Bytes
/
.stylelintrc
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
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"alpha-value-notation": "number",
"at-rule-empty-line-before": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": true,
"at-rule-no-vendor-prefix": true,
"color-function-notation": "legacy",
"color-hex-length": "long",
"color-named": "never",
"comment-empty-line-before": [
"always",
{
"ignore": [
"stylelint-commands"
]
}
],
"font-family-name-quotes": "always-unless-keyword",
"font-family-no-missing-generic-family-keyword": null,
"font-weight-notation": "numeric",
"function-url-quotes": "always",
"no-descending-specificity": null,
"no-unknown-animations": true,
"property-no-vendor-prefix": true,
"selector-class-pattern": "^[a-z0-9]+(-[a-z0-9]+)*(__[a-z]+)?(--[a-z]+)?$",
"value-keyword-case": "lower",
"value-no-vendor-prefix": true
}
}