You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Upgrade to Go 1.20.
This will cause a mass reformat. In 1.19 gofmt added a number of pedantic rules.
We'll need to update go.mod and re-run go mod tidy.
Use goimports for import ordering.
Replace interface{} with any.
Run gofmt
run goimports.
The text was updated successfully, but these errors were encountered:
upgrade Go 1.20.
Replaces gofmt with goimports. Documentation claims it performs the same
formatting plus manages/orders imports.
Added missing packages in Makefile.
Updated the go.mod and ran go mod tidy.
closes: #63
NOT FOR 0.3.
---------
Signed-off-by: Jeff Ortel <jortel@redhat.com>
Upgrade to Go 1.20.
This will cause a mass reformat. In 1.19 gofmt added a number of pedantic rules.
We'll need to update go.mod and re-run
go mod tidy
.Use goimports for import ordering.
Replace
interface{}
withany
.Run gofmt
run goimports.
The text was updated successfully, but these errors were encountered: