Skip to content
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

go1.24 support #5224

Merged
merged 13 commits into from
Feb 11, 2025
Prev Previous commit
Next Next commit
chore: remove unused function
ldez committed Feb 11, 2025
commit c5ec324d4120de957e3b6274a625be7bbfc3d5b6
4 changes: 0 additions & 4 deletions pkg/lint/linter/config.go
Original file line number Diff line number Diff line change
@@ -167,10 +167,6 @@ func IsGoLowerThanGo122() func(cfg *config.Config) error {
return isGoLowerThanGo("1.22")
}

func IsGoLowerThanGo124() func(cfg *config.Config) error {
return isGoLowerThanGo("1.24")
}

func isGoLowerThanGo(v string) func(cfg *config.Config) error {
return func(cfg *config.Config) error {
if cfg == nil || config.IsGoGreaterThanOrEqual(cfg.Run.Go, v) {