From d7531645f4f15de30734deb839afe022cb5eb7b5 Mon Sep 17 00:00:00 2001 From: Ivan Date: Tue, 7 Jul 2026 22:42:59 -0500 Subject: [PATCH] chore(config): add temp-tests directory to .prettierignore and eslint configuration to exclude temporary test files --- .prettierignore | 1 + eslint.config.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/.prettierignore b/.prettierignore index 7fc4b14b..8719de80 100644 --- a/.prettierignore +++ b/.prettierignore @@ -27,6 +27,7 @@ meshchatx/src/frontend/style.css # Other storage/ +temp-tests/ __pycache__/ .venv/ MagicMock/ diff --git a/eslint.config.mjs b/eslint.config.mjs index 492c73d9..c6dbc1b9 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -34,6 +34,7 @@ export default [ "**/*.wasm", "**/*.proto", "**/tests/**", + "**/temp-tests/**", "**/.pnpm-store/**", "**/packaging/**", ],