| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- # ============================================================
- # 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/**
- !apps/app
- !apps/pdf-converter
- # ============================================================
- # Test files
- # ============================================================
- **/*.spec.*
- **/*.test.*
- **/test/
- **/__tests__/
- **/playwright/
- # ============================================================
- # Documentation (no .md files are needed for build)
- # ============================================================
- **/*.md
- # Keep locale template .md files required at runtime by the installer
- !apps/app/resource/locales/**/*.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
|