Closed martin-sweeny closed 8 years ago
When aligning lines such as the following with spaceBefore and spaceAfter set:
spaceBefore
spaceAfter
var something = 1; var b = ( something === 1 ? true : false);
You would expect only the = after something and b to be aligned. But also, spaces may get added to all = on a line, like so:
=
something
b
var something = 1; var b = ( something = = = 1 ? true : false);
Corrected by extension default configuration. Also I added Align to first char commend.
Resolved in v0.3.0
When aligning lines such as the following with
spaceBefore
andspaceAfter
set:You would expect only the
=
aftersomething
andb
to be aligned. But also, spaces may get added to all=
on a line, like so: