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
We're using this linter via golang-ci, and seeing this:
jobmanager\http_server\public_campaigns.go:268:41: query.insertCampaignParams is missing field State (exhaustruct)
campaign, err = q.InsertCampaign(ctx, query.InsertCampaignParams{
Notice how the actual struct name starts with a capital "I" and the error is with a lower case "i"? This broke our regex matches for including structs, since they assumed the struct name to not be changed of course
The text was updated successfully, but these errors were encountered:
We're using this linter via golang-ci, and seeing this:
Notice how the actual struct name starts with a capital "I" and the error is with a lower case "i"? This broke our regex matches for including structs, since they assumed the struct name to not be changed of course
The text was updated successfully, but these errors were encountered: