forked from TrueCloudLab/linters
[#25] .golangci.yml: Replace exportloopref with copyloopvar
Fix the warning: ``` WARN The linter 'exportloopref' is deprecated (since v1.60.2) due to: Since Go1.22 (loopvar) this linter is no longer relevant. Replaced by copyloopvar. ``` Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
7fbd18be41
commit
007db8eff4
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ linters:
|
|||
- bidichk
|
||||
- durationcheck
|
||||
- exhaustive
|
||||
- exportloopref
|
||||
- copyloopvar
|
||||
- gofmt
|
||||
- goimports
|
||||
- misspell
|
||||
|
|
Loading…
Reference in a new issue