You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable bodyclose, makezero, and sqlclosecheck linters
Add three new linters to golangci-lint configuration and fix all reported issues:
- bodyclose: ensure HTTP response bodies are closed in tests; add nolint for false positives (websocket upgrade, goroutine-deferred close)
- makezero: use make+append instead of make+copy in hasCycle
- sqlclosecheck: use defer rows.Close() instead of manual close calls
Assisted-By: docker-agent
0 commit comments