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
package sandbox // Foo is OK func Foo() {} // FoobarQuux was renamed to FooBarQuux func FooBarQuux() {}
The classic example of this is a method where an acronym or a Go initialisms was fixed
CheckJson => CheckJSON
revive reports the right things yet, but it could be improved.
But because golangci-lint exclude EXC0012 by default. This one is not reported via golangci-lint.
EXC0012
We should consider trying to detect it, and report another message that won't be caught by EXC0012
Here the idea is to compare the lowercase name of the method, we can be 100% sure the method was renamed.
Please note #1235 is a special case of #1236
The text was updated successfully, but these errors were encountered:
IMO there is not enough aggregated value to justify the enhancement (but it's only my opinion)
Sorry, something went wrong.
Let's stick with #1235 then, and use a wording that fits both, OK for you?
No branches or pull requests
The classic example of this is a method where an acronym or a Go initialisms was fixed
CheckJson => CheckJSON
revive reports the right things yet, but it could be improved.
But because golangci-lint exclude
EXC0012
by default.This one is not reported via golangci-lint.
We should consider trying to detect it, and report another message that won't be caught by
EXC0012
Here the idea is to compare the lowercase name of the method, we can be 100% sure the method was renamed.
Please note #1235 is a special case of #1236
The text was updated successfully, but these errors were encountered: