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
intrange
Describe the bug For loops like
for i := int32(0); i < N; i++
are converted into
for i := range int32(N)
when using intrange, which triggers the unconvert linter if enabled.
unconvert
Expected behavior The conversion seems unnecessary and should be avoided.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
For loops like
are converted into
when using
intrange
, which triggers theunconvert
linter if enabled.Expected behavior
The conversion seems unnecessary and should be avoided.
The text was updated successfully, but these errors were encountered: