Skip to content

Commit d092dad

Browse files
authored
Bump github.com/jingyugao/rowserrcheck from v1.1.1 to c5f79b8 (#6510)
1 parent e2aaee0 commit d092dad

5 files changed

Lines changed: 8 additions & 11 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ require (
6868
github.com/golangci/misspell v0.8.0
6969
github.com/golangci/plugin-module-register v0.1.2
7070
github.com/golangci/revgrep v0.8.0
71+
github.com/golangci/rowserrcheck v0.0.0-20260419091836-c5f79b8a11ba
7172
github.com/golangci/swaggoswag v0.0.0-20250504205917-77f2aca3143e
7273
github.com/golangci/unconvert v0.0.0-20250410112200-a129a6e6413e
7374
github.com/gordonklaus/ineffassign v0.2.0
7475
github.com/gostaticanalysis/forcetypeassert v0.2.0
7576
github.com/gostaticanalysis/nilerr v0.1.2
7677
github.com/hashicorp/go-version v1.9.0
7778
github.com/jgautheron/goconst v1.10.0
78-
github.com/jingyugao/rowserrcheck v1.1.1
7979
github.com/jjti/go-spancheck v0.6.5
8080
github.com/julz/importas v0.2.0
8181
github.com/karamaru-alpha/copyloopvar v1.2.2

go.sum

Lines changed: 2 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/rowserrcheck/rowserrcheck.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package rowserrcheck
22

33
import (
4-
"github.com/jingyugao/rowserrcheck/passes/rowserr"
4+
"github.com/golangci/rowserrcheck/passes/rowserr"
55

66
"github.com/golangci/golangci-lint/v2/pkg/config"
77
"github.com/golangci/golangci-lint/v2/pkg/goanalysis"

pkg/lint/lintersdb/builder_linter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
605605
linter.NewConfig(rowserrcheck.New(&cfg.Linters.Settings.RowsErrCheck)).
606606
WithSince("v1.23.0").
607607
WithLoadForGoAnalysis().
608-
WithURL("https://github.com/jingyugao/rowserrcheck"),
608+
WithURL("https://github.com/golangci/rowserrcheck"),
609609

610610
linter.NewConfig(sloglint.New(&cfg.Linters.Settings.SlogLint)).
611611
WithSince("v1.55.0").

scripts/website/dump_info/thanks.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,9 @@ func extractInfo(lc *linter.Config) authorInfo {
121121
case "misspell":
122122
return authorInfo{Author: "client9", Host: hostGitHub}
123123

124+
case "rowserrcheck":
125+
return authorInfo{Author: "jingyugao", Host: hostGitHub}
126+
124127
case "fatcontext":
125128
return authorInfo{Author: "Crocmagnon", Host: hostGitHub}
126129

0 commit comments

Comments
 (0)