Skip to content

Commit

Permalink
chore: allow _ as unused var
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Davids <[email protected]>
  • Loading branch information
sdavids committed Jan 26, 2025
1 parent 5a7d7e6 commit 6c3e98f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hp/eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export default [
'no-param-reassign': 'off',
'no-plusplus': 'off',
'no-ternary': 'off',
'no-unused-vars': ['error', { argsIgnorePattern: '^_$' }],
'one-var': 'off',
'prefer-destructuring': ['error', { object: true, array: false }],
'sort-keys': 'off',
Expand Down

0 comments on commit 6c3e98f

Please sign in to comment.