Update stylelint config

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2020-07-26 11:22:36 +02:00
parent 9ca43c0167
commit d0daa831a1
No known key found for this signature in database
GPG key ID: 60C25B8C072916CF

View file

@ -7,20 +7,26 @@ module.exports = {
'rule-empty-line-before': [ 'rule-empty-line-before': [
'always', 'always',
{ {
ignore: ['after-comment', 'inside-block'] ignore: ['after-comment', 'inside-block'],
} },
], ],
'declaration-empty-line-before': [ 'declaration-empty-line-before': [
'never', 'never',
{ {
ignore: ['after-declaration'] ignore: ['after-declaration'],
} },
], ],
'comment-empty-line-before': null, 'comment-empty-line-before': null,
'selector-type-case': null, 'selector-type-case': null,
'selector-list-comma-newline-after': null, 'selector-list-comma-newline-after': null,
'no-descending-specificity': null, 'no-descending-specificity': null,
'string-quotes': 'single' 'string-quotes': 'single',
'selector-pseudo-element-no-unknown': [
true,
{
ignorePseudoElements: ['v-deep'],
},
],
}, },
plugins: ['stylelint-scss'] plugins: ['stylelint-scss'],
} }