Skip to content

Commit adff736

Browse files
committed
chore: use the new builder signature
1 parent e466e4b commit adff736

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: scripts/website/dump_info/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func main() {
3232
}
3333

3434
func saveLinters() error {
35-
linters := lintersdb.NewLinterBuilder().Build(config.NewDefault())
35+
linters, _ := lintersdb.NewLinterBuilder().Build(config.NewDefault())
3636

3737
var wraps []types.LinterWrapper
3838
for _, l := range linters {

Diff for: scripts/website/expand_templates/thanks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type authorDetails struct {
2020
func getThanksList() string {
2121
addedAuthors := map[string]*authorDetails{}
2222

23-
linters := lintersdb.NewLinterBuilder().Build(config.NewDefault())
23+
linters, _ := lintersdb.NewLinterBuilder().Build(config.NewDefault())
2424

2525
for _, lc := range linters {
2626
if lc.Internal {

0 commit comments

Comments
 (0)