From 46872209d61c380ec8b542dd8b3486fb72d867ca Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sun, 4 Jan 2026 00:08:50 -0600 Subject: [PATCH] chore(eslint): update ignore patterns to exclude additional directories and files --- eslint.config.mjs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eslint.config.mjs b/eslint.config.mjs index 140c2b2..55bd131 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -9,6 +9,10 @@ export default [ "**/node_modules/**", "**/dist/**", "**/build/**", + "**/out/**", + "**/android/**", + "**/MagicMock/**", + "**/reticulum_meshchatx.egg-info/**", "**/electron/assets/**", "**/meshchatx/public/**", "**/meshchatx/src/frontend/public/**", @@ -26,7 +30,6 @@ export default [ "**/*.wasm", "**/*.proto", "**/tests/**", - "**/tests/frontend/**", "**/.pnpm-store/**", ], },