.gitignore 804 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. # Test binary, built with `go test -c`
  8. *.test
  9. # Output of the go coverage tool, specifically when used with LiteIDE
  10. *.out
  11. # macOS specific files
  12. .DS_Store
  13. # IDE/editor specific files
  14. .idea/
  15. .vscode/
  16. *.swp
  17. *.swo
  18. # Archives and compressed files
  19. *.zip
  20. *.tar.gz
  21. *.tar
  22. *.gz
  23. *.bz2
  24. # Go build binaries
  25. xray
  26. xray_softfloat
  27. mockgen
  28. vprotogen
  29. !infra/vprotogen/
  30. errorgen
  31. !common/errors/errorgen/
  32. *.dat
  33. # Build assets
  34. /build_assets/
  35. # Output from dlv test
  36. **/debug.*
  37. # Certificates and keys
  38. *.crt
  39. *.key
  40. # Dependency directories (uncomment if needed)
  41. # vendor/
  42. # Logs
  43. *.log
  44. # Coverage reports
  45. coverage.*
  46. # Node modules (in case of frontend assets)
  47. node_modules/
  48. # System files
  49. Thumbs.db
  50. ehthumbs.db
  51. # Other common ignores
  52. *.bak
  53. *.tmp