-
Notifications
You must be signed in to change notification settings - Fork 1
/
.stylelintrc.js
executable file
·46 lines (46 loc) · 1.08 KB
/
.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
45
46
module.exports = {
extends: ["stylelint-config-standard", "stylelint-config-recess-order"],
rules: {
"at-rule-no-unknown": [
true,
{
ignoreAtRules: [
"mixin",
"extend",
"content",
"include",
"for",
"function",
"return",
"each",
"if",
"else",
"at-root"
],
},
],
"selector-pseudo-element-no-unknown": [
true,
{
ignorePseudoElements: ["v-deep"],
},
],
"selector-pseudo-class-no-unknown": [
true,
{
ignorePseudoClasses: ["export"],
},
],
indentation: 2,
"no-descending-specificity": null,
"declaration-colon-newline-after": null,
"no-empty-source":null,
"max-empty-lines":null,
"font-family-no-missing-generic-family-keyword":null,
"rule-empty-line-before": "never",
"selector-list-comma-newline-after": "always-multi-line",
"declaration-block-single-line-max-declarations": 1,
"number-leading-zero": "never",
},
ignoreFiles: ["**/*.js"],
};