.gitignore 362 B

123456789101112131415161718192021222324
  1. # Binaries for programs and plugins
  2. *.exe
  3. *.dll
  4. *.so
  5. *.dylib
  6. # Vim creates this
  7. *.swp
  8. # Test binary, build with `go test -c`
  9. *.test
  10. # Output of the go coverage tool, specifically when used with LiteIDE
  11. *.out
  12. # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
  13. .glide/
  14. # GoLand creates this
  15. .idea/
  16. # OSX creates this
  17. .DS_Store