Skip to content

Commit

Permalink
chore: update eslint to ingore underscore args
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcdo29 committed Sep 4, 2023
1 parent 864dc0d commit 3b8c3df
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ module.exports = {
jest: true,
},
rules: {
'@typescript-eslint/no-unused-vars': [
'error',
{ varsIgnorePattern: '^_', argsIgnorePattern: '^_' },
],
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
Expand Down

0 comments on commit 3b8c3df

Please sign in to comment.