Files
Marlin/.gitignore
thePR0M3TH3AN 2c6555d7f5 Update .gitignore and enhance test documentation for coverage reporting
- Add /bench/backups, /target/, cobertura.xml, and tarpaulin-report.html to .gitignore to prevent tracking of generated files.
- Update test.md to include instructions for running tests and generating coverage reports using cargo tarpaulin.
2025-05-20 14:11:25 -04:00

51 lines
575 B
Plaintext

# === Rust artifacts ===
/target/
/Cargo.lock
# === IDEs & editors ===
.idea/
.vscode/
*.swp
*.swo
*.bak
*~
# === OS files ===
.DS_Store
Thumbs.db
ehthumbs.db
desktop.ini
# === Logs and build artifacts ===
*.log
*.out
*.err
# === Marlin-specific ===
/index.db
index.db
*.sqlite
*.sqlite-wal
*.sqlite-shm
# === Tests and scratch ===
/tmp/
*.test.db
test.db
# === Environment variables and secrets ===
.env
.env.*
# === Other Files ===
repo-context.txt
saved_config.yaml
# === Other Dirs ===
/bench/corpus
/bench/backups
/target/
/cobertura.xml
/tarpaulin-report.html