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
Describe the bug When using --fix with golangci-lint, result is a wrong transformation:
--fix
golangci-lint
- for k := 0; k < int(*i); k++ { + for range int() {
From my understanding, this is something that needs to be fixed in intrange. If not, please let me know and I'll open an issue at golangci-lint.
intrange
Expected behavior Transform to
+ for range int(*i) {
The text was updated successfully, but these errors were encountered:
This is the right place for the report, thanks for submitting this one!
Sorry, something went wrong.
Handle Pointer types correctly
256ff8d
Closes #50
ckaznocha
Successfully merging a pull request may close this issue.
Describe the bug
When using
--fix
withgolangci-lint
, result is a wrong transformation:From my understanding, this is something that needs to be fixed in
intrange
.If not, please let me know and I'll open an issue at
golangci-lint
.Expected behavior
Transform to
The text was updated successfully, but these errors were encountered: