Validate error handling completeness across languages
56
71%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
_ = where the discarded value is an error, or multi-return result, _ := where the blank identifier replaces an error._ = os.Remove(path) (single return), conn, _ := net.Dial("tcp", addr) (multi-return, error discarded).if err != nil { } — the error is checked but the body does nothing.if err != nil { /* no-op */ }.log.Printf("...:", err) (or equivalent) followed by no return or propagation.