Skip to content

Commit f3ada74

Browse files
authored
Merge pull request #983 from isdaniel/add-more-common-patterns
Support more lang/Devops of Common Patterns by Technology
2 parents cbc8ab0 + e0e62f6 commit f3ada74

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

templates/commands/implement.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ You **MUST** consider the user input before proceeding (if not empty).
7474
**If ignore file missing**: Create with full pattern set for detected technology
7575
7676
**Common Patterns by Technology** (from plan.md tech stack):
77-
- **Node.js/JavaScript**: `node_modules/`, `dist/`, `build/`, `*.log`, `.env*`
77+
- **Node.js/JavaScript/TypeScript**: `node_modules/`, `dist/`, `build/`, `*.log`, `.env*`
7878
- **Python**: `__pycache__/`, `*.pyc`, `.venv/`, `venv/`, `dist/`, `*.egg-info/`
7979
- **Java**: `target/`, `*.class`, `*.jar`, `.gradle/`, `build/`
8080
- **C#/.NET**: `bin/`, `obj/`, `*.user`, `*.suo`, `packages/`
@@ -85,13 +85,16 @@ You **MUST** consider the user input before proceeding (if not empty).
8585
- **Kotlin**: `build/`, `out/`, `.gradle/`, `.idea/`, `*.class`, `*.jar`, `*.iml`, `*.log`, `.env*`
8686
- **C++**: `build/`, `bin/`, `obj/`, `out/`, `*.o`, `*.so`, `*.a`, `*.exe`, `*.dll`, `.idea/`, `*.log`, `.env*`
8787
- **C**: `build/`, `bin/`, `obj/`, `out/`, `*.o`, `*.a`, `*.so`, `*.exe`, `Makefile`, `config.log`, `.idea/`, `*.log`, `.env*`
88+
- **Swift**: `.build/`, `DerivedData/`, `*.swiftpm/`, `Packages/`
89+
- **R**: `.Rproj.user/`, `.Rhistory`, `.RData`, `.Ruserdata`, `*.Rproj`, `packrat/`, `renv/`
8890
- **Universal**: `.DS_Store`, `Thumbs.db`, `*.tmp`, `*.swp`, `.vscode/`, `.idea/`
8991
9092
**Tool-Specific Patterns**:
9193
- **Docker**: `node_modules/`, `.git/`, `Dockerfile*`, `.dockerignore`, `*.log*`, `.env*`, `coverage/`
9294
- **ESLint**: `node_modules/`, `dist/`, `build/`, `coverage/`, `*.min.js`
9395
- **Prettier**: `node_modules/`, `dist/`, `build/`, `coverage/`, `package-lock.json`, `yarn.lock`, `pnpm-lock.yaml`
9496
- **Terraform**: `.terraform/`, `*.tfstate*`, `*.tfvars`, `.terraform.lock.hcl`
97+
- **Kubernetes/k8s**: `*.secret.yaml`, `secrets/`, `.kube/`, `kubeconfig*`, `*.key`, `*.crt`
9598
9699
5. Parse tasks.md structure and extract:
97100
- **Task phases**: Setup, Tests, Core, Integration, Polish

0 commit comments

Comments
 (0)