Skip to content

build(deps): bump github.com/go-critic/go-critic from 0.11.4 to 0.11.5 #5061

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .golangci.next.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,9 @@ linters-settings:
# Detects input and output parameters that have a type of pointer to referential type.
# https://go-critic.com/overview.html#ptrToRefParam
- ptrToRefParam
# Detects append all its data while range it.
# https://go-critic.com/overview.html#rangeAppendAll
- rangeAppendAll
# Detects expensive copies of `for` loop range expressions.
# https://go-critic.com/overview.html#rangeExprCopy
- rangeExprCopy
Expand Down Expand Up @@ -1086,6 +1089,7 @@ linters-settings:
- preferStringWriter
- preferWriteByte
- ptrToRefParam
- rangeAppendAll
- rangeExprCopy
- rangeValCopy
- redundantSprint
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ require (
github.com/firefart/nonamedreturns v1.0.5
github.com/fzipp/gocyclo v0.6.0
github.com/ghostiam/protogetter v0.3.8
github.com/go-critic/go-critic v0.11.4
github.com/go-critic/go-critic v0.11.5
github.com/go-viper/mapstructure/v2 v2.2.1
github.com/go-xmlfmt/xmlfmt v1.1.2
github.com/gofrs/flock v0.12.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions jsonschema/golangci.next.jsonschema.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
"preferStringWriter",
"preferWriteByte",
"ptrToRefParam",
"rangeAppendAll",
"rangeExprCopy",
"rangeValCopy",
"redundantSprint",
Expand Down
Loading