Skip to content

Commit

Permalink
chore(eslint): no-undef checks is for the TS complier
Browse files Browse the repository at this point in the history
  • Loading branch information
enisdenjo committed May 31, 2023
1 parent 224a872 commit 81b1a68
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ const opts = {
'prettier',
],
rules: {
// undefined vars will be handled by the TS compiler
'no-undef': 'off',
// unused vars will be handled by the TS compiler
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/ban-ts-comment': [
Expand Down

0 comments on commit 81b1a68

Please sign in to comment.