Skip to content

Commit 132365e

Browse files
authored
build(deps): bump github.com/golangci/dupl from 3e9179ac440a to f665c8d69b32 (#5512)
1 parent c13fd5b commit 132365e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ require (
4343
github.com/go-viper/mapstructure/v2 v2.2.1
4444
github.com/go-xmlfmt/xmlfmt v1.1.3
4545
github.com/gofrs/flock v0.12.1
46-
github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a
46+
github.com/golangci/dupl v0.0.0-20250308024227-f665c8d69b32
4747
github.com/golangci/go-printf-func-name v0.1.0
4848
github.com/golangci/gofmt v0.0.0-20250106114630-d62b90e6713d
4949
github.com/golangci/misspell v0.6.0

go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/golinters/dupl/dupl.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"go/token"
66
"sync"
77

8-
duplAPI "github.com/golangci/dupl"
8+
duplAPI "github.com/golangci/dupl/lib"
99
"golang.org/x/tools/go/analysis"
1010

1111
"github.com/golangci/golangci-lint/pkg/config"
@@ -45,7 +45,7 @@ func New(settings *config.DuplSettings) *goanalysis.Linter {
4545

4646
return goanalysis.NewLinter(
4747
linterName,
48-
"Tool for code clone detection",
48+
"Detects duplicate fragments of code.",
4949
[]*analysis.Analyzer{analyzer},
5050
nil,
5151
).WithIssuesReporter(func(*linter.Context) []goanalysis.Issue {

0 commit comments

Comments
 (0)