When running golangci-lint locally, I encountered the following 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.
It seems that exportloopref is no longer relevant in Go 1.22 and has been replaced by copyloopvar. It is better to update the linter configuration to remove exportloopref and enable copyloopvar instead.
If possible, please assign this issue to me, and I’ll fix it right away.
Additionally, if there’s anything wrong with how I’m submitting this issue or any improvements you’d suggest, please feel free to let me know. 😃
When running

golangci-lintlocally, I encountered the following 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.It seems that
exportlooprefis no longer relevant in Go 1.22 and has been replaced bycopyloopvar. It is better to update the linter configuration to remove exportloopref and enable copyloopvar instead.If possible, please assign this issue to me, and I’ll fix it right away.
Additionally, if there’s anything wrong with how I’m submitting this issue or any improvements you’d suggest, please feel free to let me know. 😃