-
-
Notifications
You must be signed in to change notification settings - Fork 349
chore: update .gitignore with popular vibe-coding agent directories #398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -15,3 +15,8 @@ wheels/ | |||||||||
| .pytest_cache/ | ||||||||||
| .claude/ | ||||||||||
| .qdrant_code_embeddings/ | ||||||||||
|
|
||||||||||
| # Popular VibeCoding Agents | ||||||||||
| .roo/ | ||||||||||
| .augment | ||||||||||
| .vscode | ||||||||||
|
Comment on lines
+21
to
+22
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Inconsistent trailing slashes -
Suggested change
Prompt To Fix With AIThis is a comment left during a code review.
Path: .gitignore
Line: 21-22
Comment:
Inconsistent trailing slashes - `.augment` and `.vscode` should have trailing slashes to match the pattern used for other directories in this file (`.ruff_cache/`, `.claude/`, etc.)
```suggestion
.augment/
.vscode/
```
How can I resolve this? If you propose a fix, please make it concise.Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time! |
||||||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To make the
.gitignorepatterns more precise, it's recommended to add a trailing slash to entries that represent directories. This prevents git from ignoring a file that might have the same name. Since.augmentand.vscodeare directories, adding a slash would be a good improvement.