Skip to content
Open
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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ wheels/
.pytest_cache/
.claude/
.qdrant_code_embeddings/

# Popular VibeCoding Agents
.roo/
.augment
.vscode
Comment on lines +21 to +22
Copy link
Contributor

Choose a reason for hiding this comment

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

medium

To make the .gitignore patterns 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 .augment and .vscode are directories, adding a slash would be a good improvement.

.augment/
.vscode/

Comment on lines +21 to +22
Copy link
Contributor

Choose a reason for hiding this comment

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

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.)

Suggested change
.augment
.vscode
.augment/
.vscode/
Prompt To Fix With AI
This 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!