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
9 changes: 8 additions & 1 deletion Go.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@
# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
# Code coverage profiles and other test artifacts
*.out
coverage.*

Choose a reason for hiding this comment

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

This gitignore caused me a lot of trouble. This line is just too generic. It removed vendor/golang.org/x/text/language/coverage.go from my vendor. This needs to be fixed

Choose a reason for hiding this comment

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

Can confirm, had exactly the same problem. coverage.* is too broad.

*.coverprofile
profile.cov

# Dependency directories (remove the comment below to include it)
# vendor/
Expand All @@ -23,3 +26,7 @@ go.work.sum

# env file
.env

# Editor/IDE
# .idea/
# .vscode/