Skip to content

Commit

Permalink
fix(eslint-config): fix no-unused-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
andrepolischuk committed Apr 18, 2024
1 parent 906ba89 commit 47792d5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/eslint-config/js.js
Original file line number Diff line number Diff line change
Expand Up @@ -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': [
Expand Down

0 comments on commit 47792d5

Please sign in to comment.