From 359fee23b0697ca576efbe3d2c8760a7085acb36 Mon Sep 17 00:00:00 2001 From: soufiane Date: Tue, 18 Nov 2025 15:50:37 +0100 Subject: [PATCH] fix: add missing global variables to ESLint config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add fetch and timer functions (setTimeout, setInterval, etc.) as global variables in ESLint configuration to fix no-undef errors in scripts. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- eslint.config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/eslint.config.js b/eslint.config.js index e8f37268..628d2c9a 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -17,6 +17,11 @@ export default [ module: 'readonly', require: 'readonly', exports: 'writable', + fetch: 'readonly', + setTimeout: 'readonly', + setInterval: 'readonly', + clearTimeout: 'readonly', + clearInterval: 'readonly', }, }, rules: {