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 <noreply@anthropic.com>
25 lines
245 B
Plaintext
25 lines
245 B
Plaintext
node_modules
|
|
dist
|
|
out
|
|
.DS_Store
|
|
.eslintcache
|
|
*.log*
|
|
|
|
# AI Agent
|
|
.claude
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Test outputs
|
|
coverage/
|
|
downloads/
|
|
*.xlsx
|
|
*.parsed.json
|
|
|
|
# Test scripts (debug and manual)
|
|
tests/debug/
|
|
tests/manual/
|
|
test-*.mjs
|
|
test-*.js
|
|
compare_*.js |