.gitignore 469 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. 100daysofrust/.gitignore
  2. # Rust build output
  3. target/
  4. **/target/
  5. # Cargo package manager files
  6. Cargo.lock
  7. **/Cargo.lock
  8. # Backup and temporary files
  9. *.rs.bk
  10. *.swp
  11. *.swo
  12. *~
  13. *.tmp
  14. # IDEs and editors
  15. .vscode/
  16. .idea/
  17. *.code-workspace
  18. # OS-specific files
  19. .DS_Store
  20. Thumbs.db
  21. # Logs
  22. *.log
  23. # Byebug command history
  24. .byebug_history
  25. # Node modules (if any JS tooling)
  26. node_modules/
  27. # Coverage and test output
  28. coverage/
  29. *.profraw
  30. # Miscellaneous
  31. *.bak
  32. *.old
  33. *.orig
  34. *.rej