From 00af1e3b4696927f9a7e6716c69c7c983ecc2431 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 3 Jan 2026 15:43:55 -0600 Subject: [PATCH] chore: update .gitignore and .prettierignore to include MagicMock and additional directories for better file management --- .gitignore | 4 +++- .prettierignore | 38 ++++++++++++++++++++++++++++++-------- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 3f9b5f0..6e7f0ca 100644 --- a/.gitignore +++ b/.gitignore @@ -76,4 +76,6 @@ Thumbs.db meshchat-config/ .hypothesis -.hypothesis/ \ No newline at end of file +.hypothesis/ + +MagicMock/ \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index 048274e..5ab4ab5 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,9 +1,31 @@ -dist -node_modules -build -electron/assets -meshchatx/public -pnpm-lock.yaml -poetry.lock -*.log +# Prettier ignore file +# Dependencies +node_modules/ +pnpm-lock.yaml + +# Build output +dist/ +build/ +linux-unpacked/ +win-unpacked/ +mac-unpacked/ + +# Public assets and libraries +meshchatx/public/ +meshchatx/src/frontend/public/ +meshchatx/src/frontend/style.css + +# Other +storage/ +__pycache__/ +.venv/ +MagicMock/ +*.min.js +*.wasm +*.proto + +# Documentation and misc +misc/README.md +android/README.md +CHANGELOG.md