.gitignore 3.5 KB

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