amidgo

Results 2 issues of amidgo

I have this example ```go package linter import ( "context" "github.com/jmoiron/sqlx" ) func Do() { ctx := context.Background() db := new(sqlx.DB) rows, err := db.QueryContext(ctx, "SELECT * FROM animals") if...