enable predeclared

Find code that shadows one of Go's predeclared identifiers.

Signed-off-by: Kai Xia <kaix+github@fastmail.com>
This commit is contained in:
Kai Xia
2026-02-25 21:08:35 +11:00
parent 4e6589d51f
commit 6830790692
2 changed files with 2 additions and 3 deletions
-1
View File
@@ -53,7 +53,6 @@ linters:
- nilnil
- paralleltest
- perfsprint
- predeclared
- revive
- staticcheck
- tagalign
+2 -2
View File
@@ -106,8 +106,8 @@ func (p *CodexProvider) Chat(
if evt.Type == "response.completed" || evt.Type == "response.failed" || evt.Type == "response.incomplete" {
evtResp := evt.Response
if evtResp.ID != "" {
copy := evtResp
resp = &copy
evtRespCopy := evtResp
resp = &evtRespCopy
}
}
}