.gitignore 586 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. # IDE specific files
  16. .idea/
  17. .vscode/
  18. *.swp
  19. *.swo
  20. # OS specific files
  21. .DS_Store
  22. .DS_Store?
  23. ._*
  24. .Spotlight-V100
  25. .Trashes
  26. ehthumbs.db
  27. Thumbs.db
  28. *.log
  29. # Binary output directory
  30. /bin/
  31. /dist/
  32. # Local environment variables
  33. .env
  34. .env.local
  35. .opencode/
  36. # ignore locally built binary
  37. opencode*