.gitignore 320 B

12345678910111213141516171819202122232425262728
  1. # Temporary files
  2. *~
  3. *#
  4. .#*
  5. coverage.txt
  6. # Vendors
  7. package-lock.json
  8. node_modules/
  9. vendor/
  10. # Binaries for programs and plugins
  11. dist/
  12. gin-bin
  13. *.exe
  14. *.exe~
  15. *.dll
  16. *.so
  17. *.dylib
  18. # Test binary, build with `go test -c`
  19. *.test
  20. # Output of the go coverage tool, specifically when used with LiteIDE
  21. *.out
  22. # IDE settings
  23. .idea