From 008c70c46aed9b060161d598376ba5f3f18dca76 Mon Sep 17 00:00:00 2001 From: Benjamin DeMann Date: Wed, 10 Apr 2024 16:22:10 -0600 Subject: [PATCH] no-undef should be off because the ts compiler handles it for us --- .eslintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 8e2555a094..35757b419c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -46,7 +46,7 @@ module.exports = { ], '@typescript-eslint/ban-ts-comment': 'off', 'prefer-const': 'off', // For azle let is used to indicate mutability not only re-assignability - 'no-undef': 'error', // TS compiler handles this for us + 'no-undef': 'off', // TS compiler handles this for us '@typescript-eslint/no-explicit-any': 'off' // TODO https://github.com/demergent-labs/azle/issues/1737 } };