-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.json
40 lines (40 loc) · 1020 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
{
"extends": [
"stylelint-config-recommended-vue",
"stylelint-config-standard-scss"
],
"plugins": ["stylelint-scss"],
"rules": {
"scss/at-rule-conditional-no-parentheses": null,
"scss/dollar-variable-empty-line-before": null,
"scss/operator-no-unspaced": null,
"comment-empty-line-before": null,
"comment-whitespace-inside": null,
"scss/double-slash-comment-whitespace-inside": null,
"rule-empty-line-before": null,
"at-rule-empty-line-before": null,
"selector-no-vendor-prefix": null,
"property-no-vendor-prefix": null,
"selector-class-pattern": null,
"declaration-empty-line-before": null,
"selector-pseudo-class-no-unknown": null,
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"function",
"if",
"else",
"each",
"include",
"include-media",
"use",
"return",
"mixin",
"debug",
"for"
]
}
]
}
}