.gitignore 381 B

123456789101112131415161718192021222324252627282930313233343536
  1. cmd/hercules-generate-plugin/plugin_template_source.go
  2. **/.DS_Store
  3. .idea
  4. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  5. *.o
  6. *.a
  7. *.so
  8. # Folders
  9. _obj
  10. _test
  11. # Architecture specific extensions/prefixes
  12. *.[568vq]
  13. [568vq].out
  14. *.cgo1.go
  15. *.cgo2.c
  16. _cgo_defun.c
  17. _cgo_gotypes.go
  18. _cgo_export.*
  19. _testmain.go
  20. *.exe
  21. *.test
  22. *.prof
  23. *.tsv
  24. *.tsv.gz
  25. *.json
  26. **/__pycache__