**build: update .gitignore to exclude temporary test and debug files**
- Added patterns for temporary test files (`test*.js`, `test*.ts`, `temp-test*.js`, `temp-test*.ts`, etc.) to `.gitignore`. - Included directories `/temp/` and `/temp-tests/` to prevent accidental commits of temporary or debug-related files. **Purpose**: Ensure cleaner version control by excluding unnecessary temporary and debug files created during development.
This commit is contained in:
parent
a6eeba23da
commit
ed2deb235b
1 changed files with 12 additions and 0 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
|
@ -61,3 +61,15 @@ Thumbs.db
|
|||
/data/
|
||||
/cli-package/soulcraft-brainy-cli-*.tgz
|
||||
/web-service-package/node_modules/
|
||||
|
||||
# Temporary test files created by AI agents
|
||||
test*.js
|
||||
test*.ts
|
||||
temp-test*.js
|
||||
temp-test*.ts
|
||||
reproduction*.js
|
||||
reproduction*.ts
|
||||
debug*.js
|
||||
debug*.ts
|
||||
/temp/
|
||||
/temp-tests/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue