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
Currently zeek-format removes empty lines before any minor comments, e.g.,
zeek-format
event new_event(name: string, params: call_argument_vector) { print name; } # Should preserve empty line before.
first gets formatted to
event new_event(name: string, params: call_argument_vector) { print name; } # Should preserve empty line.
and then again (breaking idempotency) to
I would have expect this to not change formatting at all.
zeek-format should still remove empty after e.g., { (comment first node in block).
{
Labelling as bug due to idempotency breaking.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
zeek-format
removes empty lines before any minor comments, e.g.,first gets formatted to
and then again (breaking idempotency) to
I would have expect this to not change formatting at all.
zeek-format
should still remove empty after e.g.,{
(comment first node in block).Labelling as bug due to idempotency breaking.
The text was updated successfully, but these errors were encountered: