.gitignore 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. *.a
  5. *.so
  6. vendor/
  7. vendor/*
  8. venv/
  9. # Folders
  10. _obj
  11. _test
  12. # Architecture specific extensions/prefixes
  13. *.[568vq]
  14. [568vq].out
  15. *.cgo1.go
  16. *.cgo2.c
  17. _cgo_defun.c
  18. _cgo_gotypes.go
  19. _cgo_export.*
  20. _testmain.go
  21. *.exe
  22. *.test
  23. *.prof
  24. # ---> Python
  25. # Byte-compiled / optimized / DLL files
  26. __pycache__/
  27. *.py[cod]
  28. *$py.class
  29. # Distribution / packaging
  30. .Python
  31. env/
  32. build/
  33. develop-eggs/
  34. dist/
  35. downloads/
  36. eggs/
  37. .eggs/
  38. lib/
  39. lib64/
  40. parts/
  41. sdist/
  42. var/
  43. *.egg-info/
  44. .installed.cfg
  45. *.egg
  46. # PyInstaller
  47. # Usually these files are written by a python script from a template
  48. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  49. *.manifest
  50. *.spec
  51. # Installer logs
  52. pip-log.txt
  53. pip-delete-this-directory.txt
  54. # Unit test / coverage reports
  55. htmlcov/
  56. .tox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *,cover
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. target/