.gitignore 998 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. *.a
  5. *.so
  6. vendor/
  7. venv/
  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. # ---> Python
  24. # Byte-compiled / optimized / DLL files
  25. __pycache__/
  26. *.py[cod]
  27. *$py.class
  28. # Distribution / packaging
  29. .Python
  30. env/
  31. build/
  32. develop-eggs/
  33. dist/
  34. downloads/
  35. eggs/
  36. .eggs/
  37. lib/
  38. lib64/
  39. parts/
  40. sdist/
  41. var/
  42. *.egg-info/
  43. .installed.cfg
  44. *.egg
  45. # PyInstaller
  46. # Usually these files are written by a python script from a template
  47. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  48. *.manifest
  49. *.spec
  50. # Installer logs
  51. pip-log.txt
  52. pip-delete-this-directory.txt
  53. # Unit test / coverage reports
  54. htmlcov/
  55. .tox/
  56. .coverage
  57. .coverage.*
  58. .cache
  59. nosetests.xml
  60. coverage.xml
  61. *,cover
  62. # Translations
  63. *.mo
  64. *.pot
  65. # Django stuff:
  66. *.log
  67. # Sphinx documentation
  68. docs/_build/
  69. # PyBuilder
  70. target/