Skip to content

Commit 2e7575d

Browse files
committed
chore: update implementation
1 parent a27a1df commit 2e7575d

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

.golangci.next.reference.yml

+3
Original file line numberDiff line numberDiff line change
@@ -3758,6 +3758,9 @@ linters:
37583758
# Default: []
37593759
ignore-interface-regexps:
37603760
- ^(?i)c(?-i)ach(ing|e)
3761+
# Determines whether wrapcheck should report errors returned from inside the package.
3762+
# Default: false
3763+
report-internal-errors: true
37613764

37623765
wsl:
37633766
# Do strict checking when assigning from append (x = append(x, y)).

jsonschema/golangci.next.jsonschema.json

+5
Original file line numberDiff line numberDiff line change
@@ -3934,6 +3934,11 @@
39343934
"items": {
39353935
"type": "string"
39363936
}
3937+
},
3938+
"report-internal-errors": {
3939+
"description": "determines whether wrapcheck should report errors returned from inside the package.",
3940+
"type": "boolean",
3941+
"default": false
39373942
}
39383943
}
39393944
},

pkg/config/linters_settings.go

+1
Original file line numberDiff line numberDiff line change
@@ -965,6 +965,7 @@ type WrapcheckSettings struct {
965965
IgnoreSigRegexps []string `mapstructure:"ignore-sig-regexps"`
966966
IgnorePackageGlobs []string `mapstructure:"ignore-package-globs"`
967967
IgnoreInterfaceRegexps []string `mapstructure:"ignore-interface-regexps"`
968+
ReportInternalErrors bool `mapstructure:"report-internal-errors"`
968969
}
969970

970971
type WSLSettings struct {

pkg/golinters/wrapcheck/wrapcheck.go

+2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ import (
1010

1111
func New(settings *config.WrapcheckSettings) *goanalysis.Linter {
1212
cfg := wrapcheck.NewDefaultConfig()
13+
1314
if settings != nil {
1415
cfg.ExtraIgnoreSigs = settings.ExtraIgnoreSigs
16+
cfg.ReportInternalErrors = settings.ReportInternalErrors
1517

1618
if len(settings.IgnoreSigs) != 0 {
1719
cfg.IgnoreSigs = settings.IgnoreSigs

0 commit comments

Comments
 (0)