Skip to content

Commit 0528182

Browse files
committed
chore: update thanks generator
1 parent 284effb commit 0528182

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

docs/data/linters_info.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@
539539
"name": "iotamixing",
540540
"desc": "checks if iotas are being used in const blocks with other non-iota declarations.",
541541
"loadMode": 8199,
542-
"originalURL": "github.com/AdminBenni/iota-mixing",
542+
"originalURL": "https://github.com/AdminBenni/iota-mixing",
543543
"internal": false,
544544
"isSlow": false,
545545
"since": "v2.5.0"

docs/data/thanks.json

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@
1515
"profile": "https://github.com/sponsors/Abirdcfly",
1616
"avatar": "https://github.com/Abirdcfly.png"
1717
},
18+
{
19+
"name": "AdminBenni",
20+
"linters": [
21+
"iotamixing"
22+
],
23+
"profile": "https://github.com/sponsors/AdminBenni",
24+
"avatar": "https://github.com/AdminBenni.png"
25+
},
1826
{
1927
"name": "alecthomas",
2028
"linters": [
@@ -69,6 +77,14 @@
6977
"profile": "https://github.com/sponsors/ashanbrown",
7078
"avatar": "https://github.com/ashanbrown.png"
7179
},
80+
{
81+
"name": "babakks",
82+
"linters": [
83+
"godoclint"
84+
],
85+
"profile": "https://github.com/sponsors/babakks",
86+
"avatar": "https://github.com/babakks.png"
87+
},
7288
{
7389
"name": "bkielbasa",
7490
"linters": [
@@ -242,14 +258,6 @@
242258
"profile": "https://github.com/sponsors/go-critic",
243259
"avatar": "https://github.com/go-critic.png"
244260
},
245-
{
246-
"name": "godoc-lint",
247-
"linters": [
248-
"godoclint"
249-
],
250-
"profile": "https://github.com/sponsors/godoc-lint",
251-
"avatar": "https://github.com/godoc-lint.png"
252-
},
253261
{
254262
"name": "golang",
255263
"linters": [

pkg/lint/lintersdb/builder_linter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ func (LinterBuilder) Build(cfg *config.Config) ([]*linter.Config, error) {
449449

450450
linter.NewConfig(iotamixing.New(&cfg.Linters.Settings.IotaMixing)).
451451
WithSince("v2.5.0").
452-
WithURL("github.com/AdminBenni/iota-mixing"),
452+
WithURL("https://github.com/AdminBenni/iota-mixing"),
453453

454454
linter.NewConfig(ireturn.New(&cfg.Linters.Settings.Ireturn)).
455455
WithSince("v1.43.0").

scripts/website/dump_info/thanks.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ func extractInfo(lc *linter.Config) authorInfo {
111111
case "fatcontext":
112112
return authorInfo{Author: "Crocmagnon", Host: hostGitHub}
113113

114+
case "godoclint":
115+
return authorInfo{Author: "babakks", Host: hostGitHub}
116+
114117
default:
115118
if strings.HasPrefix(lc.OriginalURL, "https://pkg.go.dev/") {
116119
return authorInfo{Author: "golang", Host: hostGitHub}

0 commit comments

Comments
 (0)