Skip to content

Commit b07c319

Browse files
build(deps): bump github.com/go-critic/go-critic from 0.11.4 to 0.11.5 (#5061)
Co-authored-by: Fernandez Ludovic <[email protected]>
1 parent 31f2714 commit b07c319

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.golangci.next.reference.yml

+4
Original file line numberDiff line numberDiff line change
@@ -890,6 +890,9 @@ linters-settings:
890890
# Detects input and output parameters that have a type of pointer to referential type.
891891
# https://go-critic.com/overview.html#ptrToRefParam
892892
- ptrToRefParam
893+
# Detects append all its data while range it.
894+
# https://go-critic.com/overview.html#rangeAppendAll
895+
- rangeAppendAll
893896
# Detects expensive copies of `for` loop range expressions.
894897
# https://go-critic.com/overview.html#rangeExprCopy
895898
- rangeExprCopy
@@ -1086,6 +1089,7 @@ linters-settings:
10861089
- preferStringWriter
10871090
- preferWriteByte
10881091
- ptrToRefParam
1092+
- rangeAppendAll
10891093
- rangeExprCopy
10901094
- rangeValCopy
10911095
- redundantSprint

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ require (
3838
github.com/firefart/nonamedreturns v1.0.5
3939
github.com/fzipp/gocyclo v0.6.0
4040
github.com/ghostiam/protogetter v0.3.8
41-
github.com/go-critic/go-critic v0.11.4
41+
github.com/go-critic/go-critic v0.11.5
4242
github.com/go-viper/mapstructure/v2 v2.2.1
4343
github.com/go-xmlfmt/xmlfmt v1.1.2
4444
github.com/gofrs/flock v0.12.1

go.sum

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

jsonschema/golangci.next.jsonschema.json

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868
"preferStringWriter",
6969
"preferWriteByte",
7070
"ptrToRefParam",
71+
"rangeAppendAll",
7172
"rangeExprCopy",
7273
"rangeValCopy",
7374
"redundantSprint",

0 commit comments

Comments
 (0)