From 25c63fff04713b555799241a931758eb4e09cb07 Mon Sep 17 00:00:00 2001 From: Ashwin Gopalsamy <47941624+ashwingopalsamy@users.noreply.github.com> Date: Sun, 12 Jan 2025 08:34:53 +0530 Subject: [PATCH] feat(go.gitignore): ignore code coverage and IDE --- Go.gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Go.gitignore b/Go.gitignore index 6f72f892..ed202726 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -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.* +*.coverprofile +profile.cov # Dependency directories (remove the comment below to include it) # vendor/ @@ -23,3 +26,7 @@ go.work.sum # env file .env + +# Editor/IDE +.idea/ +.vscode/