From 3db9fbee14e8b1c4948a0fc82575d427f71446ee Mon Sep 17 00:00:00 2001 From: Sparsh Sam <110058692+sparshsam@users.noreply.github.com> Date: Sun, 28 Jun 2026 02:14:25 -0400 Subject: [PATCH] fix: ignore electron/ in ESLint (Node.js require() convention) --- eslint.config.mjs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eslint.config.mjs b/eslint.config.mjs index 05e726d..9a9b9a5 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -12,6 +12,8 @@ const eslintConfig = defineConfig([ "out/**", "build/**", "next-env.d.ts", + // Electron is a separate Node.js project using require() + "electron/**", ]), ]);