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
There are at least 2 ways that comply to gofmt:
gofmt
// (A) _ = fn( a, b) // (B) _ = fn( a, b, )
There are also different ways to place first argument, but most likely it can be handled with the same technique that will be used for the case above.
// (A) _ = fn( a, b) // (B) _ = fn(a, b)
Whether this belongs to the go-consistent scope is an open question too.
go-consistent
The text was updated successfully, but these errors were encountered:
Same thing applies to multi-line composite literals.
Sorry, something went wrong.
add a checker for closing fn call parenthesis position
07322f2
Updates #3 Signed-off-by: Iskander Sharipov <quasilyte@gmail.com>
No branches or pull requests
There are at least 2 ways that comply to
gofmt
:There are also different ways to place first argument, but most likely it can be handled with the same technique that will be used for the case above.
Whether this belongs to the
go-consistent
scope is an open question too.The text was updated successfully, but these errors were encountered: