forked from superhero-com/superhero-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
44 lines (44 loc) · 988 Bytes
/
.stylelintrc.json
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
{
"plugins": [
"stylelint-scss"
],
"extends": "stylelint-config-recommended-vue/scss",
"overrides": [
{
"files": [
"**/*.scss"
],
"customSyntax": "postcss-scss"
}
],
"rules": {
"no-empty-source": null,
"no-descending-specificity": null,
"selector-pseudo-element-no-unknown": [
true,
{}
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": ["global", "deep"]
}
],
"scss/selector-no-redundant-nesting-selector": true,
"scss/at-rule-no-unknown": [
true,
{
"ignoreAtRules": ["use", "include", "extend", "if", "else", "each", "mixin"]
}
],
"rule-empty-line-before": [
"always", {
"except": ["first-nested"],
"ignore": ["after-comment"]
}
],
"comment-no-empty": true,
"declaration-block-no-duplicate-properties": true,
"declaration-block-single-line-max-declarations": 1
}
}