Default severity: error
A context must not be nil. Use context.TODO() when the appropriate parent is
not known or context.Background() for an explicit root.
Bad
load(nil) // reported when the first parameter is context.ContextGood
load(context.TODO())