From f5b997bfc4c77ef262726d14b30d387eb7acd1c6 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sun, 25 Jan 2026 20:55:58 -1000 Subject: Fix all static analysis errors (golangci-lint) - Fix errcheck: handle all error return values in production code - Fix errcheck: handle all error return values in test files - Fix staticcheck: replace deprecated WithCredentialsFile with WithAuthCredentialsFile - Remove unused code: authHeaders, planToEatPlannerItem, planToEatResponse - Use defer func() { _ = x.Close() }() pattern for ignored close errors Co-Authored-By: Claude Opus 4.5 --- cmd/dashboard/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd/dashboard/main.go') diff --git a/cmd/dashboard/main.go b/cmd/dashboard/main.go index 2d2f63b..40a5002 100644 --- a/cmd/dashboard/main.go +++ b/cmd/dashboard/main.go @@ -39,7 +39,7 @@ func main() { if err != nil { log.Fatalf("Failed to initialize database: %v", err) } - defer db.Close() + defer func() { _ = db.Close() }() // Initialize session manager sessionManager := scs.New() -- cgit v1.2.3