Skip to content
Merged
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,6 @@ posts.txt
*.gguf
*.bin
.rocketride/

.agents
.internal
Comment on lines +43 to +44

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 The file is missing a trailing newline, which is flagged by most editors and linters. POSIX defines a text file as a sequence of lines each terminated by a newline, so omitting it can cause subtle issues with tooling that processes the file line-by-line.

Suggested change
.agents
.internal
.agents
.internal

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!

Fix in Codex Fix in Claude Code

Comment on lines 41 to +44

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 The two new entries are added without a section comment. Every other block in this file has a descriptive header (e.g., # Claude Code, # Large model files). Adding a comment here would make it clear what these directories are for and keep the file consistent.

Suggested change
.rocketride/
.agents
.internal
.rocketride/
# AI agent workspaces / internal tooling
.agents
.internal

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!

Fix in Codex Fix in Claude Code

Loading