| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- # Dependencies
- node_modules/
- # Build output
- dist/
- # svelte-package's scratch dir (ui/ library build)
- .svelte-kit/
- .cmem
- # IDE
- .idea/
- .vscode/
- *.swp
- *.swo
- *~
- # OS
- .DS_Store
- Thumbs.db
- # Test coverage
- /coverage/
- .nyc_output/
- # Environment
- .env
- .env.local
- .env.*.local
- # Logs
- *.log
- npm-debug.log*
- # TypeScript build info
- *.tsbuildinfo
- # SQLite WAL mode files
- *.db-wal
- *.db-shm
- # Local Claude settings
- .claude/settings.local.json
- .claude/scheduled_tasks.lock
- .claude/handoffs/
- # Parallels Windows VM SSH/connection config (local machine, see CLAUDE.md)
- .parallels
- # Confidential business / product / strategy docs — must NOT land in the
- # public engine repo (see the IP boundary in CLAUDE.md)
- docs/business/
- # CodeGraph data directories (in test projects)
- .codegraph/
- test_frameworks
- # Test language repos for manual testing
- test-languages/
- nul
- release/
- .antigravitycli/
- # Local-only: browser-based tmux session launcher (see tmux-web/README.md)
- tmux-web/
- assets/__pycache__/
- assets/generate-waitlist.py
- .kommandr/
- # Local scratch tests (never commit)
- __tests__/zz-scratch*
- # linux-arm64 kernel cross-build cache (rust:1-bookworm builder)
- target-linux/
- .kommandr/kommandr.db
- .kommandr/kommandr.db-wal
- .kommandr/kommandr.db-shm
- # Stray git bundles from the Windows VM transfer (a lost `:` in an scp target
- # once committed three of these, 7.9 MB, into a feature branch).
- *.bundle
- *.gitbundle
|