.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. # Created by .ignore support plugin (hsz.mobi)
  2. .idea
  3. *.iml
  4. ### Python template
  5. # Byte-compiled / optimized / DLL files
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. build/
  14. develop-eggs/
  15. dist/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. wheels/
  25. pip-wheel-metadata/
  26. share/python-wheels/
  27. *.egg-info/
  28. .installed.cfg
  29. *.egg
  30. MANIFEST
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .nox/
  43. .coverage
  44. .coverage.*
  45. .cache
  46. nosetests.xml
  47. coverage.xml
  48. *.cover
  49. *.py,cover
  50. .hypothesis/
  51. .pytest_cache/
  52. cover/
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. local_settings.py
  59. db.sqlite3
  60. db.sqlite3-journal
  61. # Flask stuff:
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff:
  65. .scrapy
  66. # Sphinx documentation
  67. docs/_build/
  68. # PyBuilder
  69. .pybuilder/
  70. target/
  71. # Jupyter Notebook
  72. .ipynb_checkpoints
  73. # IPython
  74. profile_default/
  75. ipython_config.py
  76. # pyenv
  77. # For a library or package, you might want to ignore these files since the code is
  78. # intended to run in multiple environments; otherwise, check them in:
  79. # .python-version
  80. # pipenv
  81. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  82. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  83. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  84. # install all needed dependencies.
  85. #Pipfile.lock
  86. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  87. __pypackages__/
  88. # Celery stuff
  89. celerybeat-schedule
  90. celerybeat.pid
  91. # SageMath parsed files
  92. *.sage.py
  93. # Environments
  94. .env
  95. .venv
  96. env/
  97. venv/
  98. ENV/
  99. env.bak/
  100. venv.bak/
  101. # Spyder project settings
  102. .spyderproject
  103. .spyproject
  104. # Rope project settings
  105. .ropeproject
  106. # mkdocs documentation
  107. /site
  108. # mypy
  109. .mypy_cache/
  110. .dmypy.json
  111. dmypy.json
  112. # Pyre type checker
  113. .pyre/
  114. # pytype static type analyzer
  115. .pytype/
  116. # Cython debug symbols
  117. cython_debug/
  118. ### JetBrains template
  119. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  120. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  121. # User-specific stuff
  122. .idea/**/workspace.xml
  123. .idea/**/tasks.xml
  124. .idea/**/usage.statistics.xml
  125. .idea/**/dictionaries
  126. .idea/**/shelf
  127. # Generated files
  128. .idea/**/contentModel.xml
  129. # Sensitive or high-churn files
  130. .idea/**/dataSources/
  131. .idea/**/dataSources.ids
  132. .idea/**/dataSources.local.xml
  133. .idea/**/sqlDataSources.xml
  134. .idea/**/dynamic.xml
  135. .idea/**/uiDesigner.xml
  136. .idea/**/dbnavigator.xml
  137. # Gradle
  138. .idea/**/gradle.xml
  139. .idea/**/libraries
  140. # Gradle and Maven with auto-import
  141. # When using Gradle or Maven with auto-import, you should exclude module files,
  142. # since they will be recreated, and may cause churn. Uncomment if using
  143. # auto-import.
  144. # .idea/artifacts
  145. # .idea/compiler.xml
  146. # .idea/jarRepositories.xml
  147. # .idea/modules.xml
  148. # .idea/*.iml
  149. # .idea/modules
  150. # *.iml
  151. # *.ipr
  152. # CMake
  153. cmake-build-*/
  154. # Mongo Explorer plugin
  155. .idea/**/mongoSettings.xml
  156. # File-based project format
  157. *.iws
  158. # IntelliJ
  159. out/
  160. # mpeltonen/sbt-idea plugin
  161. .idea_modules/
  162. # JIRA plugin
  163. atlassian-ide-plugin.xml
  164. # Cursive Clojure plugin
  165. .idea/replstate.xml
  166. # Crashlytics plugin (for Android Studio and IntelliJ)
  167. com_crashlytics_export_strings.xml
  168. crashlytics.properties
  169. crashlytics-build.properties
  170. fabric.properties
  171. # Editor-based Rest Client
  172. .idea/httpRequests
  173. # Android studio 3.1+ serialized cache file
  174. .idea/caches/build_file_checksums.ser