Skip to content

Commit

Permalink
Fixed up eslint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
eXamadeus committed Mar 22, 2020
1 parent d7983b0 commit 06fb3c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@ module.exports = {
// wildcard inclusions
{
blankLine: 'always',
prev: ['multiline-block-like'],
prev: ['multiline-block-like', 'multiline-const', 'multiline-expression'],
next: '*',
},
{
blankLine: 'always',
prev: '*',
next: ['multiline-block-like', 'switch', 'return'],
next: ['multiline-block-like', 'multiline-const', 'multiline-expression', 'switch', 'return'],
},

// specific exclusions for case statements
Expand Down

0 comments on commit 06fb3c5

Please sign in to comment.