diff --git a/.eslintrc.js b/.eslintrc.js index 20034fd..9173e12 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -9,9 +9,10 @@ module.exports = { ], rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', - 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' + 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', + "no-unused-vars": ["error", {"vars": "local", "args": "none"}] }, parserOptions: { parser: 'babel-eslint' } -} \ No newline at end of file +}