.gitignore 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. # Dependencies
  2. node_modules/
  3. # Build output
  4. dist/
  5. # svelte-package's scratch dir (ui/ library build)
  6. .svelte-kit/
  7. .cmem
  8. # IDE
  9. .idea/
  10. .vscode/
  11. *.swp
  12. *.swo
  13. *~
  14. # OS
  15. .DS_Store
  16. Thumbs.db
  17. # Test coverage
  18. /coverage/
  19. .nyc_output/
  20. # Environment
  21. .env
  22. .env.local
  23. .env.*.local
  24. # Logs
  25. *.log
  26. npm-debug.log*
  27. # TypeScript build info
  28. *.tsbuildinfo
  29. # SQLite WAL mode files
  30. *.db-wal
  31. *.db-shm
  32. # Local Claude settings
  33. .claude/settings.local.json
  34. .claude/scheduled_tasks.lock
  35. .claude/handoffs/
  36. # Parallels Windows VM SSH/connection config (local machine, see CLAUDE.md)
  37. .parallels
  38. # Confidential business / product / strategy docs — must NOT land in the
  39. # public engine repo (see the IP boundary in CLAUDE.md)
  40. docs/business/
  41. # CodeGraph data directories (in test projects)
  42. .codegraph/
  43. test_frameworks
  44. # Test language repos for manual testing
  45. test-languages/
  46. nul
  47. release/
  48. .antigravitycli/
  49. # Local-only: browser-based tmux session launcher (see tmux-web/README.md)
  50. tmux-web/
  51. assets/__pycache__/
  52. assets/generate-waitlist.py
  53. .kommandr/
  54. # Local scratch tests (never commit)
  55. __tests__/zz-scratch*
  56. # linux-arm64 kernel cross-build cache (rust:1-bookworm builder)
  57. target-linux/
  58. .kommandr/kommandr.db
  59. .kommandr/kommandr.db-wal
  60. .kommandr/kommandr.db-shm
  61. # Stray git bundles from the Windows VM transfer (a lost `:` in an scp target
  62. # once committed three of these, 7.9 MB, into a feature branch).
  63. *.bundle
  64. *.gitbundle