From 1e599af48089cd2e19138c63d2927eb46c336a8a Mon Sep 17 00:00:00 2001 From: Panagiotis Papadopoulos Date: Sun, 2 Mar 2025 09:06:25 +0100 Subject: [PATCH] chore(eslint): disable 'no-undef' rule For TS projects this is already enforced by tsc, see: https://eslint.org/docs/latest/rules/no-undef#handled_by_typescript --- eslint.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/eslint.config.js b/eslint.config.js index beeef45e0..becf4c3b0 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -19,6 +19,7 @@ export default tseslint.config( { rules: { // add rule overrides here + "no-undef": "off" } }, {