Inside a function I can have this:
if (an_expression) {{ var }} else another_expression
Running air format gives this:
if (an_expression) {{ var }} else {
another_expression
}
Is this intended? I guess the fact that the embracing operator and block expressions share curly braces might have something to do with this result, so I thought it might be a bug?
Of course if the line is short enough, I would expect air format to do nothing in this example.