-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
Description
What happened?
The CI linter step currently fails in several areas because of modernize linter rules.
Version
latest
Example Code
Error: baked_in.go:304:6: rangeint: for loop can be modernized using range over int (modernize)
for i := 0; i < len(vals); i++ {
^
Error: baked_in.go:657:6: rangeint: for loop can be modernized using range over int (modernize)
for i = 0; i < 12; i++ {
^
Error: baked_in.go:675:6: rangeint: for loop can be modernized using range over int (modernize)
for i = 0; i < 9; i++ {
^Reactions are currently unavailable