We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af68675 commit 5a540d0Copy full SHA for 5a540d0
pkg/lint/linter/config.go
@@ -167,10 +167,6 @@ func IsGoLowerThanGo122() func(cfg *config.Config) error {
167
return isGoLowerThanGo("1.22")
168
}
169
170
-func IsGoLowerThanGo124() func(cfg *config.Config) error {
171
- return isGoLowerThanGo("1.24")
172
-}
173
-
174
func isGoLowerThanGo(v string) func(cfg *config.Config) error {
175
return func(cfg *config.Config) error {
176
if cfg == nil || config.IsGoGreaterThanOrEqual(cfg.Run.Go, v) {
0 commit comments