Skip to content

Commit

Permalink
fix: multiple statements combining on same line
Browse files Browse the repository at this point in the history
  • Loading branch information
danielc92 committed May 20, 2023
1 parent 09c4446 commit b38802b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,8 @@ module.exports = {
}
],
'eol-last': [ 'warn', 'always' ],
'newline-after-var': 'warn',
// conflicts with padding-line-between-statements
'newline-after-var': 'off',
'comma-dangle': [ 'warn', 'never' ],
'comma-style': [ 'warn', 'last' ],
'object-property-newline': [ 'warn', { 'allowAllPropertiesOnSameLine': false } ],
Expand Down

0 comments on commit b38802b

Please sign in to comment.