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
Go v1.18 has been released and after upgrading some projects to that new version code-climate fails:
typeEvent[Tany] struct {
Time time.TimeService*ServiceMessagestringBodyT
}
error: (CC::CLI::Analyze::EngineFailure) engine golint failed with status 1 and stderr
Could not lint file: /code/pkg/service/event.go
Error /code/pkg/service/event.go:8:14: expected ']', found any (and 3 more errors)
Here the particular reason is the generic part [T any] which is new in golang 1.18
The text was updated successfully, but these errors were encountered:
Go v1.18 has been released and after upgrading some projects to that new version code-climate fails:
Here the particular reason is the generic part
[T any]
which is new in golang 1.18The text was updated successfully, but these errors were encountered: