You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run go fix to apply automated code modernizations including:
- Replace interface{} with any
- Replace reflect.Ptr with reflect.Pointer
- Remove unnecessary loop variable copies (Go 1.22+)
- Use strings.Builder instead of string concatenation
- Use strings.SplitSeq and strings.CutPrefix
- Use slices.Contains and maps.Copy
- Use integer range loops (for i := range n)
- Inline toPointer helper with new(x)
- Remove omitempty where omitzero semantics apply
https://claude.ai/code/session_01B28566J8s8ueCF5BobeKkE
0 commit comments