From 15226f268fe7398f2b360fd6352762ed05830347 Mon Sep 17 00:00:00 2001 From: Denis Isaev Date: Sat, 6 Dec 2025 13:33:46 +0300 Subject: [PATCH] docs: update thanks page --- docs/content/docs/product/thanks.md | 8 ++++++-- docs/data/thanks.json | 8 ++++++++ scripts/website/dump_info/thanks.go | 3 +++ 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/product/thanks.md b/docs/content/docs/product/thanks.md index 64884da41f85..ae0809f88516 100644 --- a/docs/content/docs/product/thanks.md +++ b/docs/content/docs/product/thanks.md @@ -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/). diff --git a/docs/data/thanks.json b/docs/data/thanks.json index 4e012aa1679e..7e1a1cebf3e7 100644 --- a/docs/data/thanks.json +++ b/docs/data/thanks.json @@ -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": [ diff --git a/scripts/website/dump_info/thanks.go b/scripts/website/dump_info/thanks.go index 09b1d19aa71f..91653c20d47c 100644 --- a/scripts/website/dump_info/thanks.go +++ b/scripts/website/dump_info/thanks.go @@ -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}