Skip to content

Commit 93a5977

Browse files
committed
Upgrade golangci-lint and stringer
Remove an unused `go:generate` line.
1 parent 2226b2e commit 93a5977

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@ brew-lint-depends:
3838

3939
.PHONY: debian-lint-depends # Install linting tools on Debian
4040
debian-lint-depends:
41-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/bin v1.63.0
41+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/bin v1.63.4
4242

4343
.PHONY: install-generators # Install Go code generators
4444
install-generators:
45-
@$(GO) install golang.org/x/tools/cmd/stringer@v0.24.0
45+
@$(GO) install golang.org/x/tools/cmd/stringer@v0.29.0
4646

4747
.PHONY: generate # Generate Go code
4848
generate:

registry/registry.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
// Package registry provides a RFC 9535 JSONPath function registry.
22
package registry
33

4-
//go:generate stringer -linecomment -output registry_string.go -type FuncType
5-
64
import (
75
"errors"
86
"fmt"

0 commit comments

Comments
 (0)