.gitignore 375 B

123456789101112131415161718192021222324252627
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.exe~
  4. *.dll
  5. *.so
  6. *.dylib
  7. bin
  8. testbin/*
  9. # Test binary, build with `go test -c`
  10. *.test
  11. # Output of the go coverage tool, specifically when used with LiteIDE
  12. *.out
  13. # Kubernetes Generated files - skip generated files, except for vendored files
  14. !vendor/**/zz_generated.*
  15. # editor and IDE paraphernalia
  16. .idea
  17. *.swp
  18. *.swo
  19. *~
  20. .vscode