Skip to content

Commit f2501d6

Browse files
committed
docs: update misspell repository URL
1 parent 3f0afe4 commit f2501d6

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

pkg/lint/lintersdb/builder_linter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
450450
linter.NewConfig(misspell.New(&cfg.Linters.Settings.Misspell)).
451451
WithSince("v1.8.0").
452452
WithAutoFix().
453-
WithURL("https://github.com/client9/misspell"),
453+
WithURL("https://github.com/golangci/misspell"),
454454

455455
linter.NewConfig(musttag.New(&cfg.Linters.Settings.MustTag)).
456456
WithSince("v1.51.0").

scripts/website/expand_templates/thanks.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ func extractLinterURL(lc *linter.Config) string {
8686
case "depguard":
8787
return "https://github.com/dixonwille/depguard"
8888

89+
case "misspell":
90+
return "https://github.com/client9/misspell"
91+
8992
default:
9093
if strings.HasPrefix(lc.OriginalURL, "https://github.com/gostaticanalysis/") {
9194
return "https://github.com/tenntenn/gostaticanalysis"

0 commit comments

Comments
 (0)