Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@ reviews:
auto_review:
enabled: true
drafts: false
pre_merge_checks:
custom_checks:
- mode: error
name: shell-check
instructions: |
- Always check if the shell scripts are valid and sytactically correct.
- Make sure there are examples for all the supported shells, such as bash, zsh, fish, etc.
Comment on lines +19 to +25
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix typo in instruction text.

Line 24 contains a spelling error: "sytactically" should be "syntactically".

-          - Always check if the shell scripts are valid and sytactically correct.
+          - Always check if the shell scripts are valid and syntactically correct.
🤖 Prompt for AI Agents
In .coderabbit.yaml around lines 19 to 25, fix the spelling error in the
custom_checks instructions: replace "sytactically" with "syntactically" in the
sentence "- Always check if the shell scripts are valid and sytactically
correct." so the line reads "- Always check if the shell scripts are valid and
syntactically correct."


chat:
auto_reply: true
5 changes: 5 additions & 0 deletions templates/setup-example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,8 @@ echo "✅ git gtr configured!"
echo ""
echo "View config with: git config --local --list | grep gtr"
echo "Create a worktree with: git gtr new my-feature"

# Fish shell completions for git gtr
echo "To enable fish shell completions for git gtr, run:"
echo " ln -s /path/to/git-worktree-runner/completions/gtr.fish ~/.config/fish/completions/"
echo "Then reload fish with: exec fish"