generated from desenvolvweb/basic-front-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
37 lines (37 loc) · 1.17 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
{
"extends": [
"stylelint-config-standard",
"stylelint-config-standard-scss",
"stylelint-config-sass-guidelines",
"stylelint-config-prettier"
],
"plugins": [
"stylelint-sass-render-errors",
"stylelint-selector-no-empty",
"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,
"max-empty-lines": [1, { "ignore": ["comments"] }],
"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/stylelint-selector-no-empty": true,
"plugin/no-low-performance-animation-properties": [
true,
{ "severity": "warning" }
]
}
}