We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It misses the following cases:
v, _ := foo() // <------- did not use err here a, b, err := bar() if err != nil { ... }
or
v, err := foo() // <------ err is overwritten before used a, b, err := bar() if err != nil { ... }
Is this by design?
The text was updated successfully, but these errors were encountered:
The first one is on purpose, and you can use the -blank flag to flag errors assigned to _. The second one is #7
-blank
_
Sorry, something went wrong.
Great, thanks @dominikh.
No branches or pull requests
It misses the following cases:
or
Is this by design?
The text was updated successfully, but these errors were encountered: