chore: run gofmt on 51 files and fix go vet error#64
Closed
leegonzales wants to merge 1 commit intodanshapiro:mainfrom
Closed
chore: run gofmt on 51 files and fix go vet error#64leegonzales wants to merge 1 commit intodanshapiro:mainfrom
leegonzales wants to merge 1 commit intodanshapiro:mainfrom
Conversation
- Applied gofmt to all 51 unformatted Go files across the codebase - Fixed go vet error in internal/server/integration_test.go:564 where resp was used before checking for errors from http.Get - Also added error check on JSON decode in the same test Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Author
|
Superseded — main absorbed most of the 51-file gofmt fix independently. Only 1 file remains; opening a minimal replacement PR. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
gofmtacross the entire codebase — 51 files reformattedgo veterror (composite literal uses unkeyed fields)This unblocks main CI, which currently fails the gofmt gate on
cli_only_models_test.go(and 50 other files).Verification
gofmt -l .— clean (zero output)go vet ./...— clean (zero warnings)Note
There are 3 pre-existing test failures in
provider_preflight_test.gothat are environment-dependent (missing API key env vars). These exist onmainas well and are unrelated to this change.