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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ mlruns/
.link-cache.json
.claude/
catalog.json
*.pt
*.pth
*.safetensors
Comment on lines +60 to +62
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Remove duplicate ignore patterns.

These patterns are already defined on lines 49-51. The duplicate entries provide no additional functionality and should be removed to keep the .gitignore clean and maintainable.

🧹 Proposed fix
 .claude/
 catalog.json
-*.pt
-*.pth
-*.safetensors
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In @.gitignore around lines 60 - 62, Remove the duplicate ignore patterns by
deleting the repeated entries "*.pt", "*.pth", and "*.safetensors" (the ones
shown in the diff) so each pattern only appears once in the .gitignore; locate
the earlier occurrences of "*.pt", "*.pth", and "*.safetensors" and remove the
later duplicate block to keep the file clean.