.gitignore 1.0 KB

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