-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
add auto fix #20
Comments
I made a (very quick and dirty and still buggy) tool for myself which changes |
Thanks @cespare, for clarity, the delay in adding autofixes is more about compatibility with golangci-lint. They were not added initially because golangci-lint had a minimum go version of In #28 I added an autofix to simplify some ranges using I plan on adding more autofixes when golangci-lint can support |
Implement suggested fixes for:
No suggested fixes for:
|
auto fix from
for i := 0; i < 100; i++
tofor i := range 100
The text was updated successfully, but these errors were encountered: