diff --git a/packages/eslint-config/js.js b/packages/eslint-config/js.js index 56f3cd2..b2fd875 100644 --- a/packages/eslint-config/js.js +++ b/packages/eslint-config/js.js @@ -69,6 +69,10 @@ module.exports = { 'error', {disallowArithmeticOperators: true} ], + 'no-unused-vars': [ + 'error', + {argsIgnorePattern: '^_', varsIgnorePattern: '^_'} + ], 'no-unused-expressions': ['error', {enforceForJSX: true}], 'no-sequences': ['error', {allowInParentheses: false}], 'no-implicit-coercion': [