Deny unused variables in eslintrc

This commit is contained in:
Alex Crichton 2018-07-04 08:35:39 -07:00
parent 62a6486d5b
commit 26ad8c627e

View File

@ -24,7 +24,6 @@ module.exports = {
'always' 'always'
], ],
'no-console': 0, 'no-console': 0,
'no-undef': 'warn', 'no-undef': 'warn'
'no-unused-vars': 'warn'
} }
}; };