.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. ### VisualStudioCode template
  2. .vscode/*
  3. !.vscode/settings.json
  4. !.vscode/tasks.json
  5. !.vscode/launch.json
  6. !.vscode/extensions.json
  7. *.code-workspace
  8. # Local History for Visual Studio Code
  9. .history/
  10. ### JetBrains template
  11. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  12. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  13. # User-specific stuff
  14. .idea/**/workspace.xml
  15. .idea/**/tasks.xml
  16. .idea/**/usage.statistics.xml
  17. .idea/**/dictionaries
  18. .idea/**/shelf
  19. # Generated files
  20. .idea/**/contentModel.xml
  21. # Sensitive or high-churn files
  22. .idea/**/dataSources/
  23. .idea/**/dataSources.ids
  24. .idea/**/dataSources.local.xml
  25. .idea/**/sqlDataSources.xml
  26. .idea/**/dynamic.xml
  27. .idea/**/uiDesigner.xml
  28. .idea/**/dbnavigator.xml
  29. # Gradle
  30. .idea/**/gradle.xml
  31. .idea/**/libraries
  32. # Gradle and Maven with auto-import
  33. # When using Gradle or Maven with auto-import, you should exclude module files,
  34. # since they will be recreated, and may cause churn. Uncomment if using
  35. # auto-import.
  36. # .idea/artifacts
  37. # .idea/compiler.xml
  38. # .idea/jarRepositories.xml
  39. # .idea/modules.xml
  40. # .idea/*.iml
  41. # .idea/modules
  42. # *.iml
  43. # *.ipr
  44. # CMake
  45. cmake-build-*/
  46. # Mongo Explorer plugin
  47. .idea/**/mongoSettings.xml
  48. # File-based project format
  49. *.iws
  50. # IntelliJ
  51. out/
  52. # mpeltonen/sbt-idea plugin
  53. .idea_modules/
  54. # JIRA plugin
  55. atlassian-ide-plugin.xml
  56. # Cursive Clojure plugin
  57. .idea/replstate.xml
  58. # Crashlytics plugin (for Android Studio and IntelliJ)
  59. com_crashlytics_export_strings.xml
  60. crashlytics.properties
  61. crashlytics-build.properties
  62. fabric.properties
  63. # Editor-based Rest Client
  64. .idea/httpRequests
  65. # Android studio 3.1+ serialized cache file
  66. .idea/caches/build_file_checksums.ser
  67. ### Node template
  68. # Logs
  69. logs
  70. *.log
  71. npm-debug.log*
  72. yarn-debug.log*
  73. yarn-error.log*
  74. lerna-debug.log*
  75. # Diagnostic reports (https://nodejs.org/api/report.html)
  76. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  77. # Runtime data
  78. pids
  79. *.pid
  80. *.seed
  81. *.pid.lock
  82. # Directory for instrumented libs generated by jscoverage/JSCover
  83. lib-cov
  84. # Coverage directory used by tools like istanbul
  85. coverage
  86. *.lcov
  87. # nyc test coverage
  88. .nyc_output
  89. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  90. .grunt
  91. # Bower dependency directory (https://bower.io/)
  92. bower_components
  93. # node-waf configuration
  94. .lock-wscript
  95. # Compiled binary addons (https://nodejs.org/api/addons.html)
  96. build/Release
  97. # Dependency directories
  98. node_modules/
  99. jspm_packages/
  100. # Snowpack dependency directory (https://snowpack.dev/)
  101. web_modules/
  102. # TypeScript cache
  103. *.tsbuildinfo
  104. # Optional npm cache directory
  105. .npm
  106. # Optional eslint cache
  107. .eslintcache
  108. # Microbundle cache
  109. .rpt2_cache/
  110. .rts2_cache_cjs/
  111. .rts2_cache_es/
  112. .rts2_cache_umd/
  113. # Optional REPL history
  114. .node_repl_history
  115. # Output of 'npm pack'
  116. *.tgz
  117. # Yarn Integrity file
  118. .yarn-integrity
  119. # dotenv environment variables file
  120. .env
  121. .env.test
  122. # parcel-bundler cache (https://parceljs.org/)
  123. .cache
  124. .parcel-cache
  125. # Next.js build output
  126. .next
  127. out
  128. # Nuxt.js build / generate output
  129. .nuxt
  130. dist
  131. # Gatsby files
  132. .cache/
  133. # Comment in the public line in if your project uses Gatsby and not Next.js
  134. # https://nextjs.org/blog/next-9-1#public-directory-support
  135. # public
  136. # vuepress build output
  137. .vuepress/dist
  138. # Serverless directories
  139. .serverless/
  140. # FuseBox cache
  141. .fusebox/
  142. # DynamoDB Local files
  143. .dynamodb/
  144. # TernJS port file
  145. .tern-port
  146. # Stores VSCode versions used for testing VSCode extensions
  147. .vscode-test
  148. # yarn v2
  149. .yarn/cache
  150. .yarn/unplugged
  151. .yarn/build-state.yml
  152. .yarn/install-state.gz
  153. .pnp.*
  154. # node-chatgpt-api
  155. settings.js
  156. test.js
  157. *.test.js
  158. *.cast
  159. cache.json