Skip to content

Commit

Permalink
ci: fix comma linting (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickofthyme authored Oct 16, 2020
1 parent 3bdd1ee commit ba63b41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ module.exports = {
'no-console': process.env.NODE_ENV === 'production' ? 2 : 1,
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 1,
'prefer-template': 'error',
'comma-dangle': ['error', 'always-multiline'],
'comma-dangle': 0,
'consistent-return': 0,
'no-plusplus': 0,
'no-bitwise': 0,
Expand Down

0 comments on commit ba63b41

Please sign in to comment.