We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In our codebase we do wrap error to a generic internal error with code like this:
fmt.Errorf("%w: %v", ErrInternal, err)
The linter reports that the second error is not wrapped but that's fine.