.gitignore 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig
  2. # Created by https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,rust,rust-analyzer
  3. # Edit at https://www.toptal.com/developers/gitignore?templates=visualstudiocode,linux,rust,rust-analyzer
  4. ### Linux ###
  5. *~
  6. # temporary files which can be created if a process still has a handle open of a deleted file
  7. .fuse_hidden*
  8. # KDE directory preferences
  9. .directory
  10. # Linux trash folder which might appear on any partition or disk
  11. .Trash-*
  12. # .nfs files are created when an open file is removed but is still being accessed
  13. .nfs*
  14. ### Rust ###
  15. # Generated by Cargo
  16. # will have compiled files and executables
  17. debug/
  18. target/
  19. # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
  20. # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
  21. Cargo.lock
  22. # These are backup files generated by rustfmt
  23. **/*.rs.bk
  24. # MSVC Windows builds of rustc generate these, which store debugging information
  25. *.pdb
  26. ### rust-analyzer ###
  27. # Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
  28. rust-project.json
  29. ### VisualStudioCode ###
  30. .vscode/*
  31. !.vscode/settings.json
  32. !.vscode/tasks.json
  33. !.vscode/launch.json
  34. !.vscode/extensions.json
  35. !.vscode/*.code-snippets
  36. # Local History for Visual Studio Code
  37. .history/
  38. # Built Visual Studio Code Extensions
  39. *.vsix
  40. ### VisualStudioCode Patch ###
  41. # Ignore all local history of files
  42. .history
  43. .ionide
  44. .github
  45. # End of https://www.toptal.com/developers/gitignore/api/visualstudiocode,linux,rust,rust-analyzer
  46. # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option)
  47. *.log
  48. logs
  49. build
  50. .env
  51. test.*