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
I was expecting that the format sub-command would keep all comment lines (with whitespace added or removed to the left of the comment), but I'm seeing some comments get stripped out:
$ cat comment.wdl
version 1.0
workflow my_work {
input{
# first comment
String foobar
}
Int num = 1
# second comment
}
$ wdltools check comment.wdl
$ wdltools format comment.wdl
comment.wdl
version 1.0
workflow my_work {
input {
# first comment
String foobar
}
Int num = 1
}
$
The text was updated successfully, but these errors were encountered:
I was expecting that the format sub-command would keep all comment lines (with whitespace added or removed to the left of the comment), but I'm seeing some comments get stripped out:
The text was updated successfully, but these errors were encountered: