Skip to content

Commit 1e1bed9

Browse files
committed
Split no-unused-vars ESLint config to multiple lines
1 parent edddc50 commit 1e1bed9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

config/eslint.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,10 @@ module.exports = {
131131
'no-unreachable': 'warn',
132132
'no-unused-expressions': 'warn',
133133
'no-unused-labels': 'warn',
134-
'no-unused-vars': ['warn', { vars: 'local', args: 'none' }],
134+
'no-unused-vars': ['warn', {
135+
vars: 'local',
136+
args: 'none'
137+
}],
135138
'no-use-before-define': ['warn', 'nofunc'],
136139
'no-useless-computed-key': 'warn',
137140
'no-useless-concat': 'warn',

0 commit comments

Comments
 (0)