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
If you run jsonnet fmt on something like this:
{ "assert": null, "error": null, "function": null, "import": null }
The output is invalid jsonnet:
{ assert: null, error: null, function: null, import: null, }
It should probably either error or quote any key that matches a defined keyword.
I'd like to mention, though, that otherwise it's much much better than my hacky json/jsonnet conversion scripts :-)
The text was updated successfully, but these errors were encountered:
a161de1
Merge pull request #171 from sparkprime/fix_keywords
dc990ec
Fix #170
Thanks for the report, it was an easy fix :)
Sorry, something went wrong.
sparkprime
No branches or pull requests
If you run jsonnet fmt on something like this:
The output is invalid jsonnet:
It should probably either error or quote any key that matches a defined keyword.
I'd like to mention, though, that otherwise it's much much better than my hacky json/jsonnet conversion scripts :-)
The text was updated successfully, but these errors were encountered: