-
Notifications
You must be signed in to change notification settings - Fork 67
/
.stylelintrc
59 lines (59 loc) · 1.64 KB
/
.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"extends": [
"stylelint-config-standard",
"stylelint-prettier/recommended"
],
"ignoreFiles": [
"dist/**/*",
"dist/variables/**/*",
"**/*.min.css",
"**/*.js",
"**/*.less",
"**/*.svg"
],
"rules": {
"comment-empty-line-before": null,
"selector-not-notation": null,
"no-descending-specificity": null,
"no-duplicate-selectors": null,
"rule-empty-line-before": null,
"color-function-notation": "legacy",
"property-no-vendor-prefix": null,
"selector-no-vendor-prefix": null,
"value-no-vendor-prefix": null,
"selector-class-pattern": null,
"alpha-value-notation": "number",
"declaration-block-no-redundant-longhand-properties": null,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
},
"overrides": [
{
"files": [
"**/*.scss"
],
"extends": [
"stylelint-config-standard-scss",
"stylelint-config-prettier-scss"
],
"plugins": [
"stylelint-order"
],
"rules": {
"scss/at-mixin-argumentless-call-parentheses": null,
"scss/dollar-variable-pattern": null,
"order/properties-alphabetical-order": true,
"value-keyword-case": [
"lower",
{
"camelCaseSvgKeywords": true
}
]
}
}
]
}