-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscss.js
30 lines (28 loc) · 902 Bytes
/
scss.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
module.exports = {
extends: [ './', 'stylelint-config-recommended-scss' ].map( require.resolve ),
plugins: [ 'stylelint-scss' ],
rules: {
'at-rule-empty-line-before': [
'always',
{
except: [ 'blockless-after-blockless', 'first-nested' ],
ignore: [ 'after-comment' ],
ignoreAtRules: [ 'else' ],
},
],
'block-opening-brace-space-before': 'always',
'block-closing-brace-newline-after': [
'always',
{
ignoreAtRules: [ 'if', 'else' ],
},
],
'at-rule-name-space-after': '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',
'scss/selector-no-redundant-nesting-selector': true,
},
};