.gitignore 566 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. # Dependency directories (remove the comment below to include it)
  12. # vendor/
  13. # Go workspace file
  14. go.work
  15. go.work.sum
  16. # env file
  17. .env
  18. .env.local
  19. .env.*.local
  20. # IDE specific files
  21. .idea/
  22. .vscode/
  23. *.swp
  24. *.swo
  25. *~
  26. .DS_Store
  27. # Build output
  28. /bin/
  29. /dist/
  30. /build/
  31. # Log files
  32. *.log
  33. # Temporary files
  34. /tmp/
  35. /temp/
  36. *.tmp
  37. # Debug files
  38. __debug_bin
  39. # OS specific files
  40. Thumbs.db