mirror of
https://github.com/scratchfoundation/golangci-lint.git
synced 2025-08-28 22:28:43 -04:00
docs: Replace links to godoc.org with pkg.go.dev (#3584)
Co-authored-by: Fernandez Ludovic <ldez@users.noreply.github.com>
This commit is contained in:
parent
e128f0df51
commit
a221d01b41
6 changed files with 12 additions and 12 deletions
|
@ -497,7 +497,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
|
|||
WithSince("v1.0.0").
|
||||
WithPresets(linter.PresetFormatting).
|
||||
WithAutoFix().
|
||||
WithURL("https://golang.org/cmd/gofmt/"),
|
||||
WithURL("https://pkg.go.dev/cmd/gofmt"),
|
||||
|
||||
linter.NewConfig(golinters.NewGofumpt(gofumptCfg)).
|
||||
WithSince("v1.28.0").
|
||||
|
@ -514,7 +514,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
|
|||
WithSince("v1.20.0").
|
||||
WithPresets(linter.PresetFormatting, linter.PresetImport).
|
||||
WithAutoFix().
|
||||
WithURL("https://godoc.org/golang.org/x/tools/cmd/goimports"),
|
||||
WithURL("https://pkg.go.dev/golang.org/x/tools/cmd/goimports"),
|
||||
|
||||
linter.NewConfig(golinters.NewGolint(golintCfg)).
|
||||
WithSince("v1.0.0").
|
||||
|
@ -562,7 +562,7 @@ func (m Manager) GetAllSupportedLinterConfigs() []*linter.Config {
|
|||
WithLoadForGoAnalysis().
|
||||
WithPresets(linter.PresetBugs, linter.PresetMetaLinter).
|
||||
WithAlternativeNames("vet", "vetshadow").
|
||||
WithURL("https://golang.org/cmd/vet/"),
|
||||
WithURL("https://pkg.go.dev/cmd/vet"),
|
||||
|
||||
linter.NewConfig(golinters.NewGrouper(grouperCfg)).
|
||||
WithSince("v1.44.0").
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue