| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- # ============================================================
- # Build artifacts and caches
- # ============================================================
- **/node_modules
- **/.next
- **/.turbo
- **/.pnpm-store
- **/coverage
- out
- # ============================================================
- # Version control
- # ============================================================
- .git
- # ============================================================
- # Docker files (prevent recursive inclusion)
- # ============================================================
- **/Dockerfile
- **/*.dockerignore
- # ============================================================
- # Unrelated apps
- # ============================================================
- apps/slackbot-proxy
- # ============================================================
- # Test files
- # ============================================================
- **/*.spec.*
- **/*.test.*
- **/test/
- **/__tests__/
- **/playwright/
- # ============================================================
- # Documentation (no .md files are needed for build)
- # ============================================================
- **/*.md
- # ============================================================
- # Local environment overrides
- # ============================================================
- .env.local
- .env.*.local
- # ============================================================
- # IDE and editor settings
- # ============================================================
- .vscode
- .idea
- **/.DS_Store
- # ============================================================
- # CI/CD, DevOps, and project management
- # ============================================================
- .changeset
- .devcontainer
- .github
- aws
- bin
- # ============================================================
- # Linter, formatter, and tool configs (not needed for build)
- # ============================================================
- **/.editorconfig
- **/.markdownlint.yml
- **/.prettier*
- **/.stylelintrc*
- **/biome.json
- **/lefthook.yml
- # ============================================================
- # AI agent configuration
- # ============================================================
- **/.claude
- **/.kiro
- **/.mcp.json
- **/.serena
|