.prettierignore 5.3 KB

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