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 5, 2023
1 parent 864dc0d commit 29e3164
Show file tree
Hide file tree
Showing 2 changed files with 208 additions and 159 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
Loading

0 comments on commit 29e3164

Please sign in to comment.