-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc
56 lines (56 loc) · 1.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"plugins": [
"stylelint-scss"
],
"extends": "stylelint-config-standard",
"rules": {
"scss/at-mixin-argumentless-call-parentheses": "always",
"scss/dollar-variable-colon-newline-after": "always-multi-line",
"scss/dollar-variable-colon-space-after": "always",
"scss/dollar-variable-colon-space-before": "never",
"scss/dollar-variable-no-missing-interpolation": true,
"scss/double-slash-comment-whitespace-inside": "always",
"scss/double-slash-comment-inline": "never",
"scss/operator-no-newline-after": true,
"scss/operator-no-newline-before": true,
"scss/operator-no-unspaced": true,
"scss/selector-no-redundant-nesting-selector": true,
"no-empty-source": true,
"selector-list-comma-newline-after": "always-multi-line",
"indentation": "tab",
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"mixin",
"extend",
"include",
"if",
"else",
"function"
]
}
],
"unit-no-unknown": [
true,
{
"ignoreUnits": [
"rpx"
]
}
],
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"page",
"navigator",
"picker",
"image",
"open-data",
"scroll-view"
]
}
]
}
}