forked from tonesto7/echo-speaks-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.json
42 lines (42 loc) · 1.37 KB
/
.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
{
"plugins": [
"stylelint-scss",
"stylelint-selector-bem-pattern"
],
"processors": [
"stylelint-processor-html"
],
"extends": [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
"rules": {
"no-empty-source": null,
"at-rule-empty-line-before": [
"always", {
"ignoreAtRules": [ "else" ]
}
],
"block-opening-brace-space-before": "always",
"block-closing-brace-newline-after": [
"always", {
"ignoreAtRules": [ "if", "else" ]
}
],
"at-rule-name-space-after": "always",
"rule-empty-line-before": "always",
"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",
"plugin/selector-bem-pattern": {
"componentName": "[A-Z]+",
"componentSelectors": {
"initial": "^\\.{componentName}(?:-[a-z]+)?$",
"combined": "^\\.combined-{componentName}-[a-z]+$"
},
"utilitySelectors": "^\\.util-[a-z]+$"
}
}
}