.gitignore 4.6 KB

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