.gitignore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. # =========================
  2. # 操作系统文件
  3. # =========================
  4. # macOS
  5. .DS_Store
  6. .AppleDouble
  7. .LSOverride
  8. Icon?
  9. ._*
  10. .Spotlight-V100
  11. .Trashes
  12. ehthumbs.db
  13. Thumbs.db
  14. # Windows
  15. Desktop.ini
  16. $RECYCLE.BIN/
  17. *.lnk
  18. # Linux
  19. *~
  20. # =========================
  21. # PyCharm 文件
  22. # =========================
  23. # PyCharm 项目文件
  24. .idea/
  25. *.iws
  26. *.iml
  27. *.ipr
  28. # PyCharm 缓存目录
  29. out/
  30. # 插件
  31. /.idea/modules.xml
  32. /.idea/workspace.xml
  33. # 数据库工具相关
  34. *.db
  35. # =========================
  36. # VSCode 文件
  37. # =========================
  38. .vscode/
  39. *.code-workspace
  40. # VSCode 本地历史文件
  41. .history/
  42. # =========================
  43. # Python 文件
  44. # =========================
  45. # Byte-compiled / optimized / DLL files
  46. __pycache__/
  47. *.py[cod]
  48. *$py.class
  49. # C extensions
  50. *.so
  51. # Distribution / packaging
  52. .Python
  53. build/
  54. develop-eggs/
  55. dist/
  56. downloads/
  57. eggs/
  58. .eggs/
  59. lib/
  60. lib64/
  61. parts/
  62. sdist/
  63. var/
  64. wheels/
  65. share/python-wheels/
  66. *.egg-info/
  67. .installed.cfg
  68. *.egg
  69. MANIFEST
  70. # PyInstaller
  71. *.manifest
  72. *.spec
  73. # Installer logs
  74. pip-log.txt
  75. pip-delete-this-directory.txt
  76. # Unit test / coverage reports
  77. htmlcov/
  78. .tox/
  79. .nox/
  80. .coverage
  81. .coverage.*
  82. .cache
  83. nosetests.xml
  84. coverage.xml
  85. *.cover
  86. *.py,cover
  87. .hypothesis/
  88. .pytest_cache/
  89. cover/
  90. # Translations
  91. *.mo
  92. *.pot
  93. # Django stuff:
  94. *.log
  95. local_settings.py
  96. db.sqlite3
  97. db.sqlite3-journal
  98. # Flask stuff:
  99. instance/
  100. .webassets-cache
  101. # Scrapy stuff:
  102. .scrapy
  103. # Sphinx documentation
  104. docs/_build/
  105. # PyBuilder
  106. .pybuilder/
  107. target/
  108. # Jupyter Notebook
  109. .ipynb_checkpoints
  110. # IPython
  111. profile_default/
  112. ipython_config.py
  113. # pyenv
  114. .python-version
  115. # pipenv
  116. Pipfile.lock
  117. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  118. __pypackages__/
  119. # Celery stuff
  120. celerybeat-schedule
  121. celerybeat.pid
  122. # SageMath parsed files
  123. *.sage.py
  124. # Environments
  125. .env
  126. .venv
  127. env/
  128. venv/
  129. ENV/
  130. env.bak/
  131. venv.bak/
  132. # Spyder project settings
  133. .spyderproject
  134. .spyproject
  135. # Rope project settings
  136. .ropeproject
  137. # mkdocs documentation
  138. /site
  139. # mypy
  140. .mypy_cache/
  141. .dmypy.json
  142. dmypy.json
  143. # Pyre type checker
  144. .pyre/
  145. # pytype static type analyzer
  146. .pytype/
  147. # Cython debug symbols
  148. cython_debug/
  149. # =========================
  150. # 其他开发工具
  151. # =========================
  152. # Sublime Text
  153. *.sublime-*
  154. # Vim
  155. *.swp
  156. *.swo
  157. *~
  158. # IntelliJ
  159. *.class
  160. # Eclipse
  161. .project
  162. .classpath
  163. .settings/
  164. # NetBeans
  165. nbproject/
  166. # =========================
  167. # 日志文件
  168. # =========================
  169. *.log
  170. npm-debug.log*
  171. yarn-debug.log*
  172. yarn-error.log*
  173. lerna-debug.log*
  174. # =========================
  175. # 临时文件
  176. # =========================
  177. # 临时文件
  178. *.tmp
  179. *.temp
  180. *.bak
  181. *.backup
  182. # 系统临时文件
  183. *.~lock.*