Skip to content

Commit 81b1a68

Browse files
committed
chore(eslint): no-undef checks is for the TS complier
1 parent 224a872 commit 81b1a68

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.eslintrc.js

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ const opts = {
1313
'prettier',
1414
],
1515
rules: {
16+
// undefined vars will be handled by the TS compiler
17+
'no-undef': 'off',
1618
// unused vars will be handled by the TS compiler
1719
'@typescript-eslint/no-unused-vars': 'off',
1820
'@typescript-eslint/ban-ts-comment': [

0 commit comments

Comments
 (0)