Skip to content

Commit

Permalink
lint: update linter settings to be less aggro about unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouxm committed Nov 29, 2024
1 parent eb5ceed commit b67de8b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dev-client/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,18 @@ module.exports = {
},
],
'no-restricted-imports': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
args: 'all',
argsIgnorePattern: '^_',
caughtErrors: 'all',
caughtErrorsIgnorePattern: '^_',
destructuredArrayIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'@typescript-eslint/no-restricted-imports': [
'error',
{
Expand Down

0 comments on commit b67de8b

Please sign in to comment.