Skip to content

Commit

Permalink
Migrate stylelint
Browse files Browse the repository at this point in the history
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Jul 26, 2020
1 parent a3cd3d3 commit d4f5fe2
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .stylelintrc.js → stylelint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,26 @@ module.exports = {
'rule-empty-line-before': [
'always',
{
ignore: ['after-comment', 'inside-block']
}
ignore: ['after-comment', 'inside-block'],
},
],
'declaration-empty-line-before': [
'never',
{
ignore: ['after-declaration']
}
ignore: ['after-declaration'],
},
],
'comment-empty-line-before': null,
'selector-type-case': null,
'selector-list-comma-newline-after': 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'],
}

0 comments on commit d4f5fe2

Please sign in to comment.