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
8 changes: 6 additions & 2 deletions docs/content/docs/product/thanks.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ aliases:

### Special thanks

Thanks to [alecthomas/gometalinter](https://github.com/alecthomas/gometalinter) for inspiration and amazing work.
Thanks to Ludovic Fernandez ([@ldez](https://github.com/ldez)) for actively maintaining the golangci-lint project.

Thanks to [bradleyfalzon/revgrep](https://github.com/bradleyfalzon/revgrep) for cool diff tool.
Thanks to Denis Isaev ([@jirfag](https://github.com/jirfag)) for creating golangci-lint and the GitHub Action [golangci-lint-action](https://github.com/golangci/golangci-lint-action).

Thanks to Alec Thomas ([@alecthomas](https://github.com/alecthomas)) and [alecthomas/gometalinter](https://github.com/alecthomas/gometalinter) for inspiration and amazing work.

Thanks to Bradley Falzon ([@bradleyfalzon](https://github.com/bradleyfalzon)) and [bradleyfalzon/revgrep](https://github.com/bradleyfalzon/revgrep) for cool diff tool.

The golangci-lint logo is inspired by the Go gopher designed by Renee French [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/).
8 changes: 8 additions & 0 deletions docs/data/thanks.json
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,14 @@
"profile": "https://github.com/sponsors/jingyugao",
"avatar": "https://github.com/jingyugao.png"
},
{
"name": "jirfag",
"linters": [
"goprintffuncname"
],
"profile": "https://github.com/sponsors/jirfag",
"avatar": "https://github.com/jirfag.png"
},
{
"name": "jjti",
"linters": [
Expand Down
3 changes: 3 additions & 0 deletions scripts/website/dump_info/thanks.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ func extractInfo(lc *linter.Config) authorInfo {
case "godoclint":
return authorInfo{Author: "babakks", Host: hostGitHub}

case "goprintffuncname":
return authorInfo{Author: "jirfag", Host: hostGitHub}

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