.gitignore 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. # Dependencies
  2. node_modules/
  3. npm-debug.log*
  4. yarn-debug.log*
  5. yarn-error.log*
  6. pnpm-debug.log*
  7. # Environment variables
  8. .env
  9. .env.local
  10. .env.development.local
  11. .env.test.local
  12. .env.production.local
  13. # Build outputs
  14. dist/
  15. build/
  16. out/
  17. *.tsbuildinfo
  18. # ...but this one is test SOURCE, not build output. The `build/` rule above matches at any
  19. # depth, so without this negation the canonical-build test suites are silently untracked:
  20. # they pass locally, never reach CI, and the gate they exist to be quietly does not exist.
  21. !packages/compatibility-layer/tests/unit/build/
  22. # OS generated files
  23. .DS_Store
  24. .DS_Store?
  25. ._*
  26. .Spotlight-V100
  27. .Trashes
  28. ehthumbs.db
  29. Thumbs.db
  30. # IDE files
  31. .vscode/
  32. .idea/
  33. *.swp
  34. *.swo
  35. *~
  36. # Logs
  37. logs
  38. *.log
  39. npm-debug.log*
  40. yarn-debug.log*
  41. yarn-error.log*
  42. lerna-debug.log*
  43. .pnpm-debug.log*
  44. # Diagnostic reports (https://nodejs.org/api/report.html)
  45. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  46. # Runtime data
  47. pids
  48. *.pid
  49. *.seed
  50. *.pid.lock
  51. # Directory for instrumented libs generated by jscoverage/JSCover
  52. lib-cov
  53. # Coverage directory used by tools like istanbul
  54. coverage
  55. *.lcov
  56. # nyc test coverage
  57. .nyc_output
  58. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  59. .grunt
  60. # Bower dependency directory (https://bower.io/)
  61. bower_components
  62. # node-waf configuration
  63. .lock-wscript
  64. # Compiled binary addons (https://nodejs.org/api/addons.html)
  65. build/Release
  66. # Dependency directories
  67. node_modules/
  68. jspm_packages/
  69. # Snowpack dependency directory (https://snowpack.dev/)
  70. web_modules/
  71. # TypeScript cache
  72. *.tsbuildinfo
  73. # Optional npm cache directory
  74. .npm
  75. # Optional eslint cache
  76. .eslintcache
  77. # Optional stylelint cache
  78. .stylelintcache
  79. # Microbundle cache
  80. .rpt2_cache/
  81. .rts2_cache_cjs/
  82. .rts2_cache_es/
  83. .rts2_cache_umd/
  84. # Optional REPL history
  85. .node_repl_history
  86. # Output of 'npm pack'
  87. *.tgz
  88. # Yarn Integrity file
  89. .yarn-integrity
  90. # dotenv environment variable files
  91. .env
  92. .env.development.local
  93. .env.test.local
  94. .env.production.local
  95. .env.local
  96. # parcel-bundler cache (https://parceljs.org/)
  97. .cache
  98. .parcel-cache
  99. # Next.js build output
  100. .next
  101. out
  102. # Nuxt.js build / generate output
  103. .nuxt
  104. dist
  105. # Gatsby files
  106. .cache/
  107. # Comment in the public line in if your project uses Gatsby and not Next.js
  108. # https://nextjs.org/blog/next-9-1#public-directory-support
  109. # public
  110. # vuepress build output
  111. .vuepress/dist
  112. # vuepress v2.x temp and cache directory
  113. .temp
  114. .cache
  115. # Docusaurus cache and generated files
  116. .docusaurus
  117. # Serverless directories
  118. .serverless/
  119. # FuseBox cache
  120. .fusebox/
  121. # DynamoDB Local files
  122. .dynamodb/
  123. # TernJS port file
  124. .tern-port
  125. # Stores VSCode versions used for testing VSCode extensions
  126. .vscode-test
  127. # yarn v2
  128. .yarn/cache
  129. .yarn/unplugged
  130. .yarn/build-state.yml
  131. .yarn/install-state.gz
  132. .pnp.*
  133. # macOS
  134. .DS_Store
  135. # IDE
  136. .idea/
  137. .vscode/
  138. *.swp
  139. *.swo
  140. *~
  141. # Temporary files
  142. tmp/
  143. temp/
  144. # Installation test artifacts
  145. .opencode.backup-*
  146. .opencode-test/
  147. .opencode-agents-version
  148. *.backup-*/
  149. # Test output
  150. /tmp/install-output.log
  151. # Temporary workspace - preserve structure, ignore content
  152. .tmp/*
  153. !.tmp/architecture/
  154. !.tmp/story-maps/
  155. !.tmp/backlog/
  156. !.tmp/contracts/
  157. .tmp/architecture/*
  158. !.tmp/architecture/.gitkeep
  159. !.tmp/architecture/README.md
  160. .tmp/story-maps/*
  161. !.tmp/story-maps/.gitkeep
  162. !.tmp/story-maps/README.md
  163. .tmp/backlog/*
  164. !.tmp/backlog/.gitkeep
  165. !.tmp/backlog/README.md
  166. .tmp/contracts/*
  167. !.tmp/contracts/.gitkeep
  168. !.tmp/contracts/README.md
  169. # Optional npm cache directory
  170. .npm
  171. # Optional eslint cache
  172. .eslintcache
  173. # Bun
  174. .bun
  175. # Evaluation results
  176. evals/results/*
  177. !evals/results/.gitkeep
  178. # User-generated task files
  179. tasks/
  180. # Claude Code integration generated files
  181. integrations/claude-code/converter/generated/
  182. .cursorrules
  183. bun.lock