.gitignore 1005 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # ---> Go
  2. # Compiled Object files, Static and Dynamic libs (Shared Objects)
  3. *.o
  4. *.a
  5. *.so
  6. # Folders
  7. _obj
  8. _test
  9. # Architecture specific extensions/prefixes
  10. *.[568vq]
  11. [568vq].out
  12. *.cgo1.go
  13. *.cgo2.c
  14. _cgo_defun.c
  15. _cgo_gotypes.go
  16. _cgo_export.*
  17. _testmain.go
  18. *.exe
  19. *.test
  20. *.prof
  21. # ---> Python
  22. # Byte-compiled / optimized / DLL files
  23. __pycache__/
  24. *.py[cod]
  25. *$py.class
  26. # C extensions
  27. *.so
  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/