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
When fcheck runs a process which emits multi-line output, like logging or a stacktrace, it would be helpful to render the yaml with linebreaks inseead of \n within the string.
Yaml supports block scalars, specifically the 'literal' style, indicated by a pipe (|).
When fcheck runs a process which emits multi-line output, like logging or a stacktrace, it would be helpful to render the yaml with linebreaks inseead of
\n
within the string.Yaml supports block scalars, specifically the 'literal' style, indicated by a pipe (|).
Which would convert the yaml report into something more readable:
Problem
fcheck is currently using serde-yaml to serialize the yaml. That project is in turn using yaml-rust. There are serveral PRs out to yaml-rust to add support for block literals, but yaml-rust has not been responsive to merging them in.
We could look at using a different serialization library.
The text was updated successfully, but these errors were encountered: