We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de1b6b commit 426ac8aCopy full SHA for 426ac8a
1 file changed
templates/commands/implement.md
@@ -58,7 +58,11 @@ You **MUST** consider the user input before proceeding (if not empty).
58
- **REQUIRED**: Create/verify ignore files based on actual project setup:
59
60
**Detection & Creation Logic**:
61
- - Check `git rev-parse --git-dir 2>/dev/null` → create/verify .gitignore
+ - Check if the following command succeeds to determine if the repository is a git repo (create/verify .gitignore if so):
62
+
63
+ ```sh
64
+ git rev-parse --git-dir 2>/dev/null
65
+ ```
66
- Check if Dockerfile* exists or Docker in plan.md → create/verify .dockerignore
67
- Check if .eslintrc* or eslint.config.* exists → create/verify .eslintignore
68
- Check if .prettierrc* exists → create/verify .prettierignore
0 commit comments