.gitignore 559 B

1234567891011121314151617181920212223242526272829303132
  1. # If you prefer the allow list template instead of the deny list, see community template:
  2. # https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
  3. #
  4. # Binaries for programs and plugins
  5. *.exe
  6. *.exe~
  7. *.dll
  8. *.so
  9. *.dylib
  10. # Test binary, built with `go test -c`
  11. *.test
  12. # Code coverage profiles and other test artifacts
  13. *.out
  14. coverage.*
  15. *.coverprofile
  16. profile.cov
  17. # Dependency directories (remove the comment below to include it)
  18. # vendor/
  19. # Go workspace file
  20. go.work
  21. go.work.sum
  22. # env file
  23. .env
  24. # Editor/IDE
  25. # .idea/
  26. # .vscode/