-
Notifications
You must be signed in to change notification settings - Fork 9
/
.stylelintrc
62 lines (62 loc) · 1.47 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
57
58
59
60
61
62
{
"extends": [
"stylelint-config-standard-scss",
"stylelint-prettier/recommended"
],
"plugins": [
"stylelint-scss",
"stylelint-order",
"stylelint-selector-bem-pattern"
],
"rules": {
"string-quotes": "single",
"at-rule-no-unknown": null,
"scss/operator-no-newline-after": null,
"scss/at-rule-no-unknown": true,
"block-closing-brace-newline-after": [
"always",
{
"ignoreAtRules": [
"if",
"else"
]
}
],
"selector-pseudo-element-colon-notation": "single",
"number-leading-zero": "always",
"declaration-empty-line-before": "never",
"at-rule-empty-line-before": null,
"scss/at-else-closing-brace-newline-after": "always-last-in-chain",
"scss/at-else-closing-brace-space-after": "always-intermediate",
"scss/at-else-empty-line-before": "never",
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
"scss/at-if-closing-brace-space-after": "always-intermediate",
"order/order": [
"dollar-variables",
"custom-properties",
{
"type": "at-rule",
"name": "include",
"hasBlock": false
},
"declarations",
"rules",
{
"type": "at-rule",
"name": "include",
"hasBlock": true
}
],
"order/properties-alphabetical-order": true,
"selector-class-pattern": null,
"plugin/selector-bem-pattern": {
"preset": "bem"
},
"scss/double-slash-comment-empty-line-before": null
},
"ignoreFiles": [
"**/vendor/**/*.scss",
"**/*.md",
"components/icons/templates/nice-icons.tmpl.scss"
]
}