.gitignore 461 B

12345678910111213141516171819202122232425262728
  1. # SPDX-FileCopyrightText: 2024 Adam Evyčędo
  2. #
  3. # SPDX-License-Identifier: MPL-2.0
  4. # Created by https://www.gitignore.io/api/go
  5. # Edit at https://www.gitignore.io/?templates=go
  6. ### Go ###
  7. # Binaries for programs and plugins
  8. *.exe
  9. *.exe~
  10. *.dll
  11. *.so
  12. *.dylib
  13. # Test binary, built with `go test -c`
  14. *.test
  15. # Output of the go coverage tool, specifically when used with LiteIDE
  16. *.out
  17. ### Go Patch ###
  18. /vendor/
  19. /Godeps/
  20. # End of https://www.gitignore.io/api/go