Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid unkeyed fields usage for exported struct in generated code #683

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

shota3506
Copy link

@shota3506 shota3506 commented Nov 29, 2024

This updates Go code template to avoid unkeyed fields usage for exported struct.

I'm using generate-fix command to generate my own custom FIX application.
However, Go standard linter, go vet, raises an alert because the generated Header/Trailer struct literal uses unkeyed fields.
https://github.com/golang/tools/blob/master/go/analysis/passes/composite/composite.go

While I understand the unkeyed field usage is valid for generated code, it can be somewhat inconvenient to exclude generated code from vet target or disable composite analysis entirely by go vet -composites=false ./....
It would be preferable if the generated code adhered to the recommended style to avoid such issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant