We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is your feature request related to a problem? Please describe. Here is an example:
import ( "encoding/yaml" ) config: { a: int b: string c: 42 } output: yaml.MarshalStream([config])
Now if I run
cue export --expression output ./main.cue
it says
output: error in call to encoding/yaml.MarshalStream: incomplete value _: ./main.cue:11:9
which doesn't tell me anything about which fields are incomplete.
Meanwhile, if I run
cue export --expression config ./main.cue
it shows exactly what's wrong
config.a: incomplete value int: ./main.cue:6:5 config.b: incomplete value string: ./main.cue:7:5
Describe the solution you'd like In my example, I want the output for the command
be something like
output.0.config.a: incomplete value int: ./main.cue:6:5 output.0.config.b: incomplete value string: ./main.cue:7:5
The text was updated successfully, but these errors were encountered:
I think this is a duplicate of #2718
Sorry, something went wrong.
No branches or pull requests
Is your feature request related to a problem? Please describe.
Here is an example:
Now if I run
it says
which doesn't tell me anything about which fields are incomplete.
Meanwhile, if I run
it shows exactly what's wrong
Describe the solution you'd like
In my example, I want the output for the command
be something like
The text was updated successfully, but these errors were encountered: