/ .gitignore
.gitignore
1 # Rust 2 /target/ 3 Cargo.lock 4 **/*.rs.bk 5 *.pdb 6 7 # Checkpoints 8 /checkpoints/ 9 *.checkpoint 10 11 # Logs 12 *.log 13 /logs/ 14 15 # IDE 16 .vscode/ 17 .idea/ 18 *.swp 19 *.swo 20 *~ 21 22 # OS 23 .DS_Store 24 Thumbs.db 25 26 # Test outputs 27 /test-results/ 28 /metrics-output/