Currently a comment in an if else block (resp. if elseif) before an else statement get's indented to the clause level:
if true
return 2
# comment
else
return 3
end
julia> print(format_text("""
if true
return 2
# comment
else
return 3
end
"""))
if true
return 2
# comment
else
return 3
end
Currently a comment in an
if elseblock (resp.if elseif) before anelsestatement get's indented to the clause level: