.gitignore 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298
  1. # Created by https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,python,vim,emacs
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=macos,visualstudiocode,python,vim,emacs
  3. ### Emacs ###
  4. # -*- mode: gitignore; -*-
  5. *~
  6. \#*\#
  7. /.emacs.desktop
  8. /.emacs.desktop.lock
  9. *.elc
  10. auto-save-list
  11. tramp
  12. .\#*
  13. # Org-mode
  14. .org-id-locations
  15. *_archive
  16. # flymake-mode
  17. *_flymake.*
  18. # eshell files
  19. /eshell/history
  20. /eshell/lastdir
  21. # elpa packages
  22. /elpa/
  23. # reftex files
  24. *.rel
  25. # AUCTeX auto folder
  26. /auto/
  27. # cask packages
  28. .cask/
  29. dist/
  30. # Flycheck
  31. flycheck_*.el
  32. # server auth directory
  33. /server/
  34. # projectiles files
  35. .projectile
  36. # directory configuration
  37. .dir-locals.el
  38. # network security
  39. /network-security.data
  40. ### macOS ###
  41. # General
  42. .DS_Store
  43. .AppleDouble
  44. .LSOverride
  45. # Icon must end with two \r
  46. Icon
  47. # Thumbnails
  48. ._*
  49. # Files that might appear in the root of a volume
  50. .DocumentRevisions-V100
  51. .fseventsd
  52. .Spotlight-V100
  53. .TemporaryItems
  54. .Trashes
  55. .VolumeIcon.icns
  56. .com.apple.timemachine.donotpresent
  57. # Directories potentially created on remote AFP share
  58. .AppleDB
  59. .AppleDesktop
  60. Network Trash Folder
  61. Temporary Items
  62. .apdisk
  63. ### macOS Patch ###
  64. # iCloud generated files
  65. *.icloud
  66. ### Python ###
  67. # Byte-compiled / optimized / DLL files
  68. __pycache__/
  69. *.py[cod]
  70. *$py.class
  71. # C extensions
  72. *.so
  73. # Distribution / packaging
  74. .Python
  75. build/
  76. develop-eggs/
  77. downloads/
  78. eggs/
  79. .eggs/
  80. lib/
  81. lib64/
  82. parts/
  83. sdist/
  84. var/
  85. wheels/
  86. share/python-wheels/
  87. *.egg-info/
  88. .installed.cfg
  89. *.egg
  90. MANIFEST
  91. # PyInstaller
  92. # Usually these files are written by a python script from a template
  93. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  94. *.manifest
  95. *.spec
  96. # Installer logs
  97. pip-log.txt
  98. pip-delete-this-directory.txt
  99. # Unit test / coverage reports
  100. htmlcov/
  101. .tox/
  102. .nox/
  103. .coverage
  104. .coverage.*
  105. .cache
  106. nosetests.xml
  107. coverage.xml
  108. *.cover
  109. *.py,cover
  110. .hypothesis/
  111. .pytest_cache/
  112. cover/
  113. # Translations
  114. *.mo
  115. *.pot
  116. # Django stuff:
  117. *.log
  118. local_settings.py
  119. db.sqlite3
  120. db.sqlite3-journal
  121. # Flask stuff:
  122. instance/
  123. .webassets-cache
  124. # Scrapy stuff:
  125. .scrapy
  126. # Sphinx documentation
  127. docs/_build/
  128. # PyBuilder
  129. .pybuilder/
  130. target/
  131. # Jupyter Notebook
  132. .ipynb_checkpoints
  133. # IPython
  134. profile_default/
  135. ipython_config.py
  136. # pyenv
  137. # For a library or package, you might want to ignore these files since the code is
  138. # intended to run in multiple environments; otherwise, check them in:
  139. # .python-version
  140. # pipenv
  141. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  142. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  143. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  144. # install all needed dependencies.
  145. #Pipfile.lock
  146. # poetry
  147. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  148. # This is especially recommended for binary packages to ensure reproducibility, and is more
  149. # commonly ignored for libraries.
  150. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  151. #poetry.lock
  152. # pdm
  153. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  154. #pdm.lock
  155. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  156. # in version control.
  157. # https://pdm.fming.dev/#use-with-ide
  158. .pdm.toml
  159. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  160. __pypackages__/
  161. # Celery stuff
  162. celerybeat-schedule
  163. celerybeat.pid
  164. # SageMath parsed files
  165. *.sage.py
  166. # Environments
  167. .env
  168. .venv
  169. env/
  170. venv/
  171. ENV/
  172. env.bak/
  173. venv.bak/
  174. # Spyder project settings
  175. .spyderproject
  176. .spyproject
  177. # Rope project settings
  178. .ropeproject
  179. # mkdocs documentation
  180. /site
  181. # mypy
  182. .mypy_cache/
  183. .dmypy.json
  184. dmypy.json
  185. # Pyre type checker
  186. .pyre/
  187. # pytype static type analyzer
  188. .pytype/
  189. # Cython debug symbols
  190. cython_debug/
  191. # PyCharm
  192. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  193. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  194. # and can be added to the global gitignore or merged into this file. For a more nuclear
  195. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  196. #.idea/
  197. ### Python Patch ###
  198. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  199. poetry.toml
  200. # ruff
  201. .ruff_cache/
  202. # LSP config files
  203. pyrightconfig.json
  204. ### Vim ###
  205. # Swap
  206. [._]*.s[a-v][a-z]
  207. !*.svg # comment out if you don't need vector files
  208. [._]*.sw[a-p]
  209. [._]s[a-rt-v][a-z]
  210. [._]ss[a-gi-z]
  211. [._]sw[a-p]
  212. # Session
  213. Session.vim
  214. Sessionx.vim
  215. # Temporary
  216. .netrwhist
  217. # Auto-generated tag files
  218. tags
  219. # Persistent undo
  220. [._]*.un~
  221. ### VisualStudioCode ###
  222. .vscode/*
  223. !.vscode/settings.json
  224. !.vscode/tasks.json
  225. !.vscode/launch.json
  226. !.vscode/extensions.json
  227. !.vscode/*.code-snippets
  228. # Local History for Visual Studio Code
  229. .history/
  230. # Built Visual Studio Code Extensions
  231. *.vsix
  232. ### VisualStudioCode Patch ###
  233. # Ignore all local history of files
  234. .history
  235. .ionide
  236. # End of https://www.toptal.com/developers/gitignore/api/macos,visualstudiocode,python,vim,emacs