Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ require (
github.com/Antonboom/nilnil v1.1.0
github.com/Antonboom/testifylint v1.6.1
github.com/BurntSushi/toml v1.5.0
github.com/Crocmagnon/fatcontext v0.7.2
github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24
github.com/GaijinEntertainment/go-exhaustruct/v3 v3.3.1
github.com/OpenPeeDeeP/depguard/v2 v2.2.1
Expand Down Expand Up @@ -127,6 +126,7 @@ require (
gitlab.com/bosi/decorder v0.4.2
go-simpler.org/musttag v0.13.0
go-simpler.org/sloglint v0.11.0
go.augendre.info/fatcontext v0.8.0
go.uber.org/automaxprocs v1.6.0
golang.org/x/mod v0.24.0
golang.org/x/sys v0.32.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/golinters/fatcontext/fatcontext.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package fatcontext

import (
"github.com/Crocmagnon/fatcontext/pkg/analyzer"
"go.augendre.info/fatcontext/pkg/analyzer"
"golang.org/x/tools/go/analysis"

"github.com/golangci/golangci-lint/v2/pkg/config"
Expand Down
3 changes: 3 additions & 0 deletions scripts/website/expand_templates/thanks.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ func extractInfo(lc *linter.Config) authorInfo {
case "misspell":
return authorInfo{Author: "client9", Host: hostGitHub}

case "fatcontext":
return authorInfo{Author: "Crocmagnon", Host: hostGitHub}

default:
if strings.HasPrefix(lc.OriginalURL, "https://pkg.go.dev/") {
return authorInfo{Author: "golang", Host: hostGitHub}
Expand Down
Loading