Use errors.As
Recipe ID
org.openrewrite.golang.codequality.UseErrorsAsArtifactgithub.com/moderneinc/recipes-goReplace if myErr, ok := err.(*MyError); ok { ... } with var myErr *MyError; if errors.As(err, &myErr) { ... } for correct wrapped error handling.
Single recipeProprietary
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.golang.codequality.UseErrorsAsIf the recipe isn’t available locally, install it with:
mod config recipes go install github.com/moderneinc/recipes-go