-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
42 lines (42 loc) · 1.02 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
module.exports = {
plugins: [
'stylelint-scss',
],
rules: {
indentation: 2,
'at-rule-empty-line-before': [
'always', {
ignoreAtRules: [
'else',
],
ignore: [
'after-comment',
'inside-block',
'blockless-after-same-name-blockless',
'blockless-after-blockless',
],
},
],
'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', {
except: [
'after-single-line-comment',
],
},
],
'scss/at-else-closing-brace-newline-after': 'always-last-in-chain',
'scss/at-else-closing-brace-space-after': 'always-intermediate',
'scss/at-if-closing-brace-newline-after': 'always-last-in-chain',
'scss/at-if-closing-brace-space-after': 'always-intermediate',
},
};