12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 100daysofrust/.gitignore
- # Rust build output
- target/
- **/target/
- # Cargo package manager files
- Cargo.lock
- **/Cargo.lock
- # Backup and temporary files
- *.rs.bk
- *.swp
- *.swo
- *~
- *.tmp
- # IDEs and editors
- .vscode/
- .idea/
- *.code-workspace
- # OS-specific files
- .DS_Store
- Thumbs.db
- # Logs
- *.log
- # Byebug command history
- .byebug_history
- # Node modules (if any JS tooling)
- node_modules/
- # Coverage and test output
- coverage/
- *.profraw
- # Miscellaneous
- *.bak
- *.old
- *.orig
- *.rej
|