.gitignore 3.8 KB

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