gofmt like tool (can you plugin to gofmt?) that rewrites ignored returns to explicitly set ‘_‘.
fmt.Println("hi")
gets rewritten to:
_err := fmt.Println("hi")
or something similar.
Preempts the complaint that Go lets you ignore errors.
golang ideas