Skip to content

Commit 213fb56

Browse files
authored
contextcheck: change owner (#3198)
1 parent 281e184 commit 213fb56

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ IMPORTANT: `varcheck` and `deadcode` has been removed of default linters.
309309
### october 2021
310310

311311
1. new linters:
312-
* `contextcheck`: https://github.com/sylvia7788/contextcheck
312+
* `contextcheck`: https://github.com/kkHAIKE/contextcheck
313313
* `varnamelen`: https://github.com/blizzy78/varnamelen
314314
2. update linters:
315315
* `gochecknoglobals`: to v0.1.0

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ require (
5151
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af
5252
github.com/julz/importas v0.1.0
5353
github.com/kisielk/errcheck v1.6.2
54+
github.com/kkHAIKE/contextcheck v1.1.0
5455
github.com/kulti/thelper v0.6.3
5556
github.com/kunwardeep/paralleltest v1.0.6
5657
github.com/kyoh86/exportloopref v0.1.8
@@ -92,7 +93,6 @@ require (
9293
github.com/ssgreg/nlreturn/v2 v2.2.1
9394
github.com/stbenjam/no-sprintf-host-port v0.1.1
9495
github.com/stretchr/testify v1.8.0
95-
github.com/sylvia7788/contextcheck v1.0.9
9696
github.com/tdakkota/asciicheck v0.1.1
9797
github.com/tetafro/godot v1.4.11
9898
github.com/timakin/bodyclose v0.0.0-20210704033933-f49887972144

go.sum

+2-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/contextcheck.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package golinters
22

33
import (
4-
"github.com/sylvia7788/contextcheck"
4+
"github.com/kkHAIKE/contextcheck"
55
"golang.org/x/tools/go/analysis"
66

77
"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"

pkg/lint/lintersdb/manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
306306
WithSince("v1.43.0").
307307
WithPresets(linter.PresetBugs).
308308
WithLoadForGoAnalysis().
309-
WithURL("https://github.com/sylvia7788/contextcheck"),
309+
WithURL("https://github.com/kkHAIKE/contextcheck"),
310310

311311
linter.NewConfig(golinters.NewCyclop(cyclopCfg)).
312312
WithSince("v1.37.0").

0 commit comments

Comments
 (0)