.gitignore 5.3 KB

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