You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When exporting Nickel to YAML, Nickel output the document directly, without an empty YAML header ---\n. While this is entirely fine by the standard, most YAML linters prefer that you add this prelude. It would appease such linters to automatically include an empty YAML header when exporting Nickel expressions.
Describe the solution you'd like
nickel export --formal yaml <<< '{hello = "world"}'---hello: world
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
When exporting Nickel to YAML, Nickel output the document directly, without an empty YAML header
---\n
. While this is entirely fine by the standard, most YAML linters prefer that you add this prelude. It would appease such linters to automatically include an empty YAML header when exporting Nickel expressions.Describe the solution you'd like
The text was updated successfully, but these errors were encountered: