Skip to content

Commit

Permalink
Ignore unused variables when linting
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Aug 17, 2024
1 parent d771d81 commit 4cb907e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ export default [
parserOptions: {
parser: ts.parser
}
},
rules: {
'@typescript-eslint/no-unused-vars': 'off'
}
},
{
Expand All @@ -28,6 +25,10 @@ export default [
...globals.browser,
...globals.node
}
},
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'off'
}
},
{
Expand Down

0 comments on commit 4cb907e

Please sign in to comment.