Skip to content

Commit

Permalink
Split no-unused-vars ESLint config to multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
valscion committed Sep 13, 2016
1 parent edddc50 commit 1e1bed9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion config/eslint.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,10 @@ module.exports = {
'no-unreachable': 'warn',
'no-unused-expressions': 'warn',
'no-unused-labels': 'warn',
'no-unused-vars': ['warn', { vars: 'local', args: 'none' }],
'no-unused-vars': ['warn', {
vars: 'local',
args: 'none'
}],
'no-use-before-define': ['warn', 'nofunc'],
'no-useless-computed-key': 'warn',
'no-useless-concat': 'warn',
Expand Down

0 comments on commit 1e1bed9

Please sign in to comment.