-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylelintrc.js
44 lines (44 loc) · 970 Bytes
/
stylelintrc.js
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
38
39
40
41
42
43
44
module.exports = {
"extends": "stylelint-config-standard",
"overrides": [
{
"extends": "stylelint-config-standard-scss",
"files": [
"**/*.scss"
],
"rules": {
"scss/at-mixin-pattern": null,
"scss/dollar-variable-pattern": null
}
}
],
"rules": {
"alpha-value-notation": "number", // using "number" here because "percentile" is not supported in rgba function and may break the code if used
"keyframes-name-pattern": null,
"no-invalid-position-at-import-rule": null,
"property-no-unknown": [
true,
{
"ignoreProperties": [
"composes"
]
}
],
"selector-id-pattern": null,
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"local",
"global"
]
}
],
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
}
};