go test occasionally regenerates a go.sum next to a parsed-only go.mod fixture even though the test path never resolves modules. Stop tracking the pattern so the working tree stays clean across test runs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
289 B
Plaintext
19 lines
289 B
Plaintext
# Build output
|
|
/dist/
|
|
/bin/
|
|
/wails-release
|
|
|
|
# Go
|
|
*.test
|
|
*.out
|
|
|
|
# go test sometimes writes a go.sum into fixture directories that have a
|
|
# go.mod even though the test only parses the module file. The fixtures
|
|
# don't need a go.sum.
|
|
**/testdata/**/go.sum
|
|
|
|
# Editor
|
|
.idea/
|
|
.vscode/
|
|
.DS_Store
|