I\'m running go vet on my CI tool, and started getting the error:
composite literal uses unkeyed fields
Because I\'m instantiating
You can disable it with the -composites=false flag: e.g.,
-composites=false
go vet -composites=false .
NB: go tool vet is deprecated
go tool vet