Skip to content

Commit 45f1e48

Browse files
committed
Fix rowserrcheck URL.
Fixes #932
1 parent a5b5598 commit 45f1e48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ golangci-lint help linters
458458
459459
- [bodyclose](https://github.com/timakin/bodyclose) - checks whether HTTP response body is closed successfully
460460
- [golint](https://github.com/golang/lint) - Golint differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes
461-
- [rowserrcheck](https://github.com/jingyugao/rowserr) - checks whether Err of rows is checked successfully
461+
- [rowserrcheck](https://github.com/jingyugao/rowserrcheck) - checks whether Err of rows is checked successfully
462462
- [stylecheck](https://github.com/dominikh/go-tools/tree/master/stylecheck) - Stylecheck is a replacement for golint
463463
- [gosec](https://github.com/securego/gosec) - Inspects source code for security problems
464464
- [interfacer](https://github.com/mvdan/interfacer) - Linter that suggests narrower interface types

pkg/lint/lintersdb/manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
111111
linter.NewConfig(golinters.NewRowsErrCheck()).
112112
WithLoadForGoAnalysis().
113113
WithPresets(linter.PresetPerformance, linter.PresetBugs).
114-
WithURL("https://github.com/jingyugao/rowserr"),
114+
WithURL("https://github.com/jingyugao/rowserrcheck"),
115115

116116
linter.NewConfig(golinters.NewStaticcheck()).
117117
WithLoadForGoAnalysis().

0 commit comments

Comments
 (0)