-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.stylelintrc
33 lines (33 loc) · 1 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-sass-guidelines"
],
"plugins": [
"stylelint-sass-render-errors",
"stylelint-high-performance-animation"
],
"rules": {
"no-empty-source": null,
"custom-property-pattern": "^([a-z][a-z0-9]*)((-|--)[a-z0-9]+)*$",
"color-no-invalid-hex": null,
"color-named": null,
"hue-degree-notation": null,
"comment-no-empty": null,
"comment-empty-line-before": null,
"custom-property-empty-line-before": null,
"selector-no-qualifying-type": null,
"function-no-unknown": null,
"at-rule-no-unknown": null,
"scss/at-rule-no-unknown": [true, { "ignoreAtRules": ["layer"] }],
"scss/comment-no-empty": null,
"scss/dollar-variable-empty-line-before": null,
"scss/double-slash-comment-empty-line-before": null,
"plugin/sass-render-errors": true,
"plugin/no-low-performance-animation-properties": [
true,
{ "severity": "warning" }
]
}
}