You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,pycharm+all,macos
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,visualstudiocode,pycharm+all,macos
  3. ### macOS ###
  4. # General
  5. .DS_Store
  6. .AppleDouble
  7. .LSOverride
  8. # Icon must end with two \r
  9. Icon
  10. # Thumbnails
  11. ._*
  12. # Files that might appear in the root of a volume
  13. .DocumentRevisions-V100
  14. .fseventsd
  15. .Spotlight-V100
  16. .TemporaryItems
  17. .Trashes
  18. .VolumeIcon.icns
  19. .com.apple.timemachine.donotpresent
  20. # Directories potentially created on remote AFP share
  21. .AppleDB
  22. .AppleDesktop
  23. Network Trash Folder
  24. Temporary Items
  25. .apdisk
  26. ### macOS Patch ###
  27. # iCloud generated files
  28. *.icloud
  29. ### PyCharm+all ###
  30. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  31. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  32. # User-specific stuff
  33. .idea/**/workspace.xml
  34. .idea/**/tasks.xml
  35. .idea/**/usage.statistics.xml
  36. .idea/**/dictionaries
  37. .idea/**/shelf
  38. # AWS User-specific
  39. .idea/**/aws.xml
  40. # Generated files
  41. .idea/**/contentModel.xml
  42. # Sensitive or high-churn files
  43. .idea/**/dataSources/
  44. .idea/**/dataSources.ids
  45. .idea/**/dataSources.local.xml
  46. .idea/**/sqlDataSources.xml
  47. .idea/**/dynamic.xml
  48. .idea/**/uiDesigner.xml
  49. .idea/**/dbnavigator.xml
  50. # Gradle
  51. .idea/**/gradle.xml
  52. .idea/**/libraries
  53. # Gradle and Maven with auto-import
  54. # When using Gradle or Maven with auto-import, you should exclude module files,
  55. # since they will be recreated, and may cause churn. Uncomment if using
  56. # auto-import.
  57. # .idea/artifacts
  58. # .idea/compiler.xml
  59. # .idea/jarRepositories.xml
  60. # .idea/modules.xml
  61. # .idea/*.iml
  62. # .idea/modules
  63. # *.iml
  64. # *.ipr
  65. # CMake
  66. cmake-build-*/
  67. # Mongo Explorer plugin
  68. .idea/**/mongoSettings.xml
  69. # File-based project format
  70. *.iws
  71. # IntelliJ
  72. out/
  73. # mpeltonen/sbt-idea plugin
  74. .idea_modules/
  75. # JIRA plugin
  76. atlassian-ide-plugin.xml
  77. # Cursive Clojure plugin
  78. .idea/replstate.xml
  79. # SonarLint plugin
  80. .idea/sonarlint/
  81. # Crashlytics plugin (for Android Studio and IntelliJ)
  82. com_crashlytics_export_strings.xml
  83. crashlytics.properties
  84. crashlytics-build.properties
  85. fabric.properties
  86. # Editor-based Rest Client
  87. .idea/httpRequests
  88. # Android studio 3.1+ serialized cache file
  89. .idea/caches/build_file_checksums.ser
  90. ### PyCharm+all Patch ###
  91. # Ignore everything but code style settings and run configurations
  92. # that are supposed to be shared within teams.
  93. .idea/*
  94. !.idea/codeStyles
  95. !.idea/runConfigurations
  96. ### Python ###
  97. # Byte-compiled / optimized / DLL files
  98. __pycache__/
  99. *.py[cod]
  100. *$py.class
  101. # C extensions
  102. *.so
  103. # Distribution / packaging
  104. .Python
  105. build/
  106. develop-eggs/
  107. dist/
  108. downloads/
  109. eggs/
  110. .eggs/
  111. lib/
  112. lib64/
  113. parts/
  114. sdist/
  115. var/
  116. wheels/
  117. share/python-wheels/
  118. *.egg-info/
  119. .installed.cfg
  120. *.egg
  121. MANIFEST
  122. # PyInstaller
  123. # Usually these files are written by a python script from a template
  124. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  125. *.manifest
  126. *.spec
  127. # Installer logs
  128. pip-log.txt
  129. pip-delete-this-directory.txt
  130. # Unit test / coverage reports
  131. htmlcov/
  132. .tox/
  133. .nox/
  134. .coverage
  135. .coverage.*
  136. .cache
  137. nosetests.xml
  138. coverage.xml
  139. *.cover
  140. *.py,cover
  141. .hypothesis/
  142. .pytest_cache/
  143. cover/
  144. # Translations
  145. *.mo
  146. *.pot
  147. # Django stuff:
  148. *.log
  149. local_settings.py
  150. db.sqlite3
  151. db.sqlite3-journal
  152. # Flask stuff:
  153. instance/
  154. .webassets-cache
  155. # Scrapy stuff:
  156. .scrapy
  157. # Sphinx documentation
  158. docs/_build/
  159. # PyBuilder
  160. .pybuilder/
  161. target/
  162. # Jupyter Notebook
  163. .ipynb_checkpoints
  164. # IPython
  165. profile_default/
  166. ipython_config.py
  167. # pyenv
  168. # For a library or package, you might want to ignore these files since the code is
  169. # intended to run in multiple environments; otherwise, check them in:
  170. # .python-version
  171. # pipenv
  172. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  173. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  174. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  175. # install all needed dependencies.
  176. #Pipfile.lock
  177. # poetry
  178. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  179. # This is especially recommended for binary packages to ensure reproducibility, and is more
  180. # commonly ignored for libraries.
  181. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  182. #poetry.lock
  183. # pdm
  184. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  185. #pdm.lock
  186. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  187. # in version control.
  188. # https://pdm.fming.dev/#use-with-ide
  189. .pdm.toml
  190. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  191. __pypackages__/
  192. # Celery stuff
  193. celerybeat-schedule
  194. celerybeat.pid
  195. # SageMath parsed files
  196. *.sage.py
  197. # Environments
  198. .env
  199. .venv
  200. env/
  201. venv/
  202. ENV/
  203. env.bak/
  204. venv.bak/
  205. # Spyder project settings
  206. .spyderproject
  207. .spyproject
  208. # Rope project settings
  209. .ropeproject
  210. # mkdocs documentation
  211. /site
  212. # mypy
  213. .mypy_cache/
  214. .dmypy.json
  215. dmypy.json
  216. # Pyre type checker
  217. .pyre/
  218. # pytype static type analyzer
  219. .pytype/
  220. # Cython debug symbols
  221. cython_debug/
  222. # PyCharm
  223. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  224. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  225. # and can be added to the global gitignore or merged into this file. For a more nuclear
  226. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  227. #.idea/
  228. ### Python Patch ###
  229. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  230. poetry.toml
  231. # ruff
  232. .ruff_cache/
  233. ### VisualStudioCode ###
  234. .vscode/*
  235. !.vscode/settings.json
  236. !.vscode/tasks.json
  237. !.vscode/launch.json
  238. !.vscode/extensions.json
  239. !.vscode/*.code-snippets
  240. # Local History for Visual Studio Code
  241. .history/
  242. # Built Visual Studio Code Extensions
  243. *.vsix
  244. ### VisualStudioCode Patch ###
  245. # Ignore all local history of files
  246. .history
  247. .ionide
  248. # End of https://www.toptal.com/developers/gitignore/api/python,visualstudiocode,pycharm+all,macos