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

View file

@ -53,7 +53,6 @@ linters:
- nilnil - nilnil
- paralleltest - paralleltest
- perfsprint - perfsprint
- predeclared
- revive - revive
- staticcheck - staticcheck
- tagalign - tagalign

View file

@ -106,8 +106,8 @@ func (p *CodexProvider) Chat(
if evt.Type == "response.completed" || evt.Type == "response.failed" || evt.Type == "response.incomplete" { if evt.Type == "response.completed" || evt.Type == "response.failed" || evt.Type == "response.incomplete" {
evtResp := evt.Response evtResp := evt.Response
if evtResp.ID != "" { if evtResp.ID != "" {
copy := evtResp evtRespCopy := evtResp
resp = &copy resp = &evtRespCopy
} }
} }
} }