File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -890,6 +890,9 @@ linters-settings:
890
890
# Detects input and output parameters that have a type of pointer to referential type.
891
891
# https://go-critic.com/overview.html#ptrToRefParam
892
892
- ptrToRefParam
893
+ # Detects append all its data while range it.
894
+ # https://go-critic.com/overview.html#rangeAppendAll
895
+ - rangeAppendAll
893
896
# Detects expensive copies of `for` loop range expressions.
894
897
# https://go-critic.com/overview.html#rangeExprCopy
895
898
- rangeExprCopy
@@ -1086,6 +1089,7 @@ linters-settings:
1086
1089
- preferStringWriter
1087
1090
- preferWriteByte
1088
1091
- ptrToRefParam
1092
+ - rangeAppendAll
1089
1093
- rangeExprCopy
1090
1094
- rangeValCopy
1091
1095
- redundantSprint
Original file line number Diff line number Diff line change 68
68
" preferStringWriter" ,
69
69
" preferWriteByte" ,
70
70
" ptrToRefParam" ,
71
+ " rangeAppendAll" ,
71
72
" rangeExprCopy" ,
72
73
" rangeValCopy" ,
73
74
" redundantSprint" ,
You can’t perform that action at this time.
0 commit comments