| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- # Dependencies and build caches
- **/node_modules
- **/coverage
- **/.pnpm-store
- **/.next
- **/.turbo
- out
- # Docker files (prevent recursive context)
- **/Dockerfile
- **/*.dockerignore
- # Git
- .git
- # IDE and editor settings
- .vscode
- .idea
- **/.DS_Store
- # Test files
- **/*.spec.*
- **/*.test.*
- **/test/
- **/__tests__/
- **/playwright/
- # Documentation (not needed for build)
- **/*.md
- !**/README.md
- # Environment files for local development
- .env.local
- .env.*.local
- # Unrelated apps
- apps/slackbot-proxy
- # CI/CD and config
- .github
- **/.editorconfig
- **/.markdownlint.yml
- **/.mcp.json
- **/.prettier*
- **/.stylelintrc*
- **/biome.json
- **/lefthook.yml
- # AI related files
- **/.claude
- **/.kiro
- **/.serena
- **/AGENTS.md
- **/CLAUDE.md
|