From 937ad85e9bbb53ff73d47b4d8f9db4e095e48c96 Mon Sep 17 00:00:00 2001 From: Misaka Date: Sun, 1 Mar 2026 14:24:33 +0800 Subject: [PATCH] chore: update .gitignore to exclude test outputs and debug scripts Add patterns to ignore temporary files generated during development: - Test coverage reports (coverage/) - Downloaded test files (downloads/, *.xlsx, *.parsed.json) - Debug and manual test scripts (tests/debug/, tests/manual/) - Temporary test scripts (test-*.mjs, test-*.js, compare_*.js) This keeps the repository clean while preserving useful test scripts locally for debugging purposes. Co-Authored-By: Claude Sonnet 4.5 --- .gitignore | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1cf8a63..2cab9ab 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,21 @@ out .eslintcache *.log* -#AI Agent +# AI Agent .claude -.env \ No newline at end of file +# Environment +.env + +# Test outputs +coverage/ +downloads/ +*.xlsx +*.parsed.json + +# Test scripts (debug and manual) +tests/debug/ +tests/manual/ +test-*.mjs +test-*.js +compare_*.js \ No newline at end of file