Skip to content
Merged
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
3 changes: 2 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
Makefile
docs
.eslintcache
.gocache
.gocache
/web/node_modules
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ web/bun.lock
electron/node_modules
electron/dist
data/
.gomodcache/
.gomodcache/
.gocache-temp
.gopath
Comment on lines +26 to +28

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.

⚠️ Potential issue | 🟡 Minor

Remove duplicate .gomodcache/ entry.

Line 26 duplicates the .gomodcache/ pattern from line 19. The new patterns .gocache-temp and .gopath are appropriate additions for a Go project, but remove the redundant entry to keep the file clean.

🔎 Proposed fix
-web/bun.lock
-
-electron/node_modules
-electron/dist
-data/
-.gomodcache/
-.gocache-temp
-.gopath
+web/bun.lock
+
+electron/node_modules
+electron/dist
+data/
+.gocache-temp
+.gopath

Committable suggestion skipped: line range outside the PR's diff.

🤖 Prompt for AI Agents
In .gitignore around lines 26 to 28, there is a duplicated `.gomodcache/` entry
(already present at line 19); remove the redundant `.gomodcache/` line and keep
the new `.gocache-temp` and `.gopath` entries so the file contains each pattern
only once.

Loading