.gitignore 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. # Created by https://www.toptal.com/developers/gitignore/api/python,node
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python,node
  3. ### Node ###
  4. # Logs
  5. logs
  6. *.log
  7. npm-debug.log*
  8. yarn-debug.log*
  9. yarn-error.log*
  10. lerna-debug.log*
  11. .pnpm-debug.log*
  12. # Diagnostic reports (https://nodejs.org/api/report.html)
  13. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  14. # Runtime data
  15. pids
  16. *.pid
  17. *.seed
  18. *.pid.lock
  19. # Directory for instrumented libs generated by jscoverage/JSCover
  20. lib-cov
  21. # Coverage directory used by tools like istanbul
  22. coverage
  23. *.lcov
  24. # nyc test coverage
  25. .nyc_output
  26. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  27. .grunt
  28. # Bower dependency directory (https://bower.io/)
  29. bower_components
  30. # node-waf configuration
  31. .lock-wscript
  32. # Compiled binary addons (https://nodejs.org/api/addons.html)
  33. build/Release
  34. # Dependency directories
  35. node_modules/
  36. jspm_packages/
  37. # Snowpack dependency directory (https://snowpack.dev/)
  38. web_modules/
  39. # TypeScript cache
  40. *.tsbuildinfo
  41. # Optional npm cache directory
  42. .npm
  43. # Optional eslint cache
  44. .eslintcache
  45. # Optional stylelint cache
  46. .stylelintcache
  47. # Microbundle cache
  48. .rpt2_cache/
  49. .rts2_cache_cjs/
  50. .rts2_cache_es/
  51. .rts2_cache_umd/
  52. # Optional REPL history
  53. .node_repl_history
  54. # Output of 'npm pack'
  55. *.tgz
  56. # Yarn Integrity file
  57. .yarn-integrity
  58. # dotenv environment variable files
  59. .env
  60. .env.development.local
  61. .env.test.local
  62. .env.production.local
  63. .env.local
  64. # parcel-bundler cache (https://parceljs.org/)
  65. .cache
  66. .parcel-cache
  67. # Next.js build output
  68. .next
  69. out
  70. # Nuxt.js build / generate output
  71. .nuxt
  72. dist
  73. # Gatsby files
  74. .cache/
  75. # Comment in the public line in if your project uses Gatsby and not Next.js
  76. # https://nextjs.org/blog/next-9-1#public-directory-support
  77. # public
  78. # vuepress build output
  79. .vuepress/dist
  80. # vuepress v2.x temp and cache directory
  81. .temp
  82. # Docusaurus cache and generated files
  83. .docusaurus
  84. # Serverless directories
  85. .serverless/
  86. # FuseBox cache
  87. .fusebox/
  88. # DynamoDB Local files
  89. .dynamodb/
  90. # TernJS port file
  91. .tern-port
  92. # Stores VSCode versions used for testing VSCode extensions
  93. .vscode-test
  94. # yarn v2
  95. .yarn/cache
  96. .yarn/unplugged
  97. .yarn/build-state.yml
  98. .yarn/install-state.gz
  99. .pnp.*
  100. ### Node Patch ###
  101. # Serverless Webpack directories
  102. .webpack/
  103. # Optional stylelint cache
  104. # SvelteKit build / generate output
  105. .svelte-kit
  106. ### Python ###
  107. # Byte-compiled / optimized / DLL files
  108. __pycache__/
  109. *.py[cod]
  110. *$py.class
  111. # C extensions
  112. *.so
  113. # Distribution / packaging
  114. .Python
  115. build/
  116. develop-eggs/
  117. dist/
  118. downloads/
  119. eggs/
  120. .eggs/
  121. lib/
  122. lib64/
  123. parts/
  124. sdist/
  125. var/
  126. wheels/
  127. share/python-wheels/
  128. *.egg-info/
  129. .installed.cfg
  130. *.egg
  131. MANIFEST
  132. # PyInstaller
  133. # Usually these files are written by a python script from a template
  134. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  135. *.manifest
  136. *.spec
  137. # Installer logs
  138. pip-log.txt
  139. pip-delete-this-directory.txt
  140. # Unit test / coverage reports
  141. htmlcov/
  142. .tox/
  143. .nox/
  144. .coverage
  145. .coverage.*
  146. nosetests.xml
  147. coverage.xml
  148. *.cover
  149. *.py,cover
  150. .hypothesis/
  151. .pytest_cache/
  152. cover/
  153. # Translations
  154. *.mo
  155. *.pot
  156. # Django stuff:
  157. local_settings.py
  158. db.sqlite3
  159. db.sqlite3-journal
  160. # Flask stuff:
  161. instance/
  162. .webassets-cache
  163. # Scrapy stuff:
  164. .scrapy
  165. # Sphinx documentation
  166. docs/_build/
  167. # PyBuilder
  168. .pybuilder/
  169. target/
  170. # Jupyter Notebook
  171. .ipynb_checkpoints
  172. # IPython
  173. profile_default/
  174. ipython_config.py
  175. # pyenv
  176. # For a library or package, you might want to ignore these files since the code is
  177. # intended to run in multiple environments; otherwise, check them in:
  178. # .python-version
  179. # pipenv
  180. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  181. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  182. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  183. # install all needed dependencies.
  184. #Pipfile.lock
  185. # poetry
  186. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  187. # This is especially recommended for binary packages to ensure reproducibility, and is more
  188. # commonly ignored for libraries.
  189. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  190. #poetry.lock
  191. # pdm
  192. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  193. #pdm.lock
  194. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  195. # in version control.
  196. # https://pdm.fming.dev/#use-with-ide
  197. .pdm.toml
  198. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  199. __pypackages__/
  200. # Celery stuff
  201. celerybeat-schedule
  202. celerybeat.pid
  203. # SageMath parsed files
  204. *.sage.py
  205. # Environments
  206. .venv
  207. env/
  208. venv/
  209. ENV/
  210. env.bak/
  211. venv.bak/
  212. # Spyder project settings
  213. .spyderproject
  214. .spyproject
  215. # Rope project settings
  216. .ropeproject
  217. # mkdocs documentation
  218. /site
  219. # mypy
  220. .mypy_cache/
  221. .dmypy.json
  222. dmypy.json
  223. # Pyre type checker
  224. .pyre/
  225. # pytype static type analyzer
  226. .pytype/
  227. # Cython debug symbols
  228. cython_debug/
  229. # PyCharm
  230. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  231. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  232. # and can be added to the global gitignore or merged into this file. For a more nuclear
  233. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  234. .idea/
  235. # VScode
  236. .vscode/
  237. ### Python Patch ###
  238. # Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
  239. poetry.toml
  240. # ruff
  241. .ruff_cache/
  242. # LSP config files
  243. pyrightconfig.json
  244. # End of https://www.toptal.com/developers/gitignore/api/python,node
  245. .DS_Store