.gitignore 933 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. # Node.js
  2. node_modules/
  3. dist/
  4. .env
  5. .env.local
  6. .env.*.local
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. pnpm-debug.log*
  11. # Python
  12. __pycache__/
  13. *.py[cod]
  14. *$py.class
  15. *.so
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. MANIFEST
  33. .env
  34. venv/
  35. .venv/
  36. ENV/
  37. env/
  38. .python-version
  39. .pytest_cache/
  40. .coverage
  41. htmlcov/
  42. # IDE/Editor
  43. .idea/
  44. .vscode/
  45. *.swp
  46. *.swo
  47. *.swn
  48. *.bak
  49. *.sublime-workspace
  50. *.sublime-project
  51. # OS
  52. .DS_Store
  53. .DS_Store?
  54. ._*
  55. .Spotlight-V100
  56. .Trashes
  57. ehthumbs.db
  58. Thumbs.db
  59. # Project specific
  60. uploads/
  61. logs/
  62. *.log
  63. temp/
  64. .cache/
  65. .temp/
  66. .tmp/
  67. # Build & Dependencies
  68. package-lock.json
  69. yarn.lock
  70. pnpm-lock.yaml
  71. poetry.lock
  72. # Testing
  73. coverage/
  74. .nyc_output/
  75. .pytest_cache/
  76. .tox/
  77. nosetests.xml
  78. coverage.xml
  79. *.cover
  80. .hypothesis/
  81. # Database
  82. *.sqlite
  83. *.sqlite3
  84. *.db
  85. # Misc
  86. *.bak
  87. *.swp
  88. *.tmp
  89. *~
  90. .env.development
  91. .env.test
  92. .env.production
  93. .conda/
  94. yolov5/