File tree Expand file tree Collapse file tree 3 files changed +189
-133
lines changed Expand file tree Collapse file tree 3 files changed +189
-133
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,6 @@ linters-settings:
175
175
- name : modifies-value-receiver
176
176
- name : package-comments
177
177
- name : range
178
- - name : range-val-address
179
- - name : range-val-in-closure
180
178
- name : receiver-naming
181
179
- name : redefines-builtin-id
182
180
- name : string-of-int
@@ -199,6 +197,11 @@ linters-settings:
199
197
govet :
200
198
disable :
201
199
- loopclosure
200
+ gosec :
201
+ excludes :
202
+ # Implicit memory aliasing of items from a range statement (irrelevant as of Go v1.22)
203
+ - G601
204
+
202
205
203
206
issues :
204
207
# Rules listed here: https://github.com/securego/gosec#available-rules
@@ -238,7 +241,6 @@ linters:
238
241
- errname
239
242
- errorlint
240
243
- exhaustruct
241
- - exportloopref
242
244
- forcetypeassert
243
245
- gocritic
244
246
# gocyclo is may be useful in the future when we start caring
You can’t perform that action at this time.
0 commit comments