From 36c29005318c092711b64b514c0f302eb6ff1fbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20W=C3=A5reus?= Date: Mon, 11 Sep 2023 19:52:53 +0200 Subject: [PATCH] add nuget obj folder to default ignore --- internal/file/default_exclusion.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/file/default_exclusion.go b/internal/file/default_exclusion.go index 1d3e2033..95e2b1fa 100644 --- a/internal/file/default_exclusion.go +++ b/internal/file/default_exclusion.go @@ -7,5 +7,6 @@ func DefaultExclusions() []string { filepath.Join("**", "node_modules", "**"), filepath.Join("**", "vendor", "**"), filepath.Join("**", ".git", "**"), + filepath.Join("**", "obj", "**"), // nuget } }