Open
Description
The last version of the formatter puts each attribute on his own line, this is great.
I would like it adds some empty line between the annotated fields to be a bit more clear.
i.e.:
@myAttribute
String aVariable1;
@myAttribute
String aVariable2;
String aVariable3;
becomes
@myAttribute
String aVariable1;
@myAttribute
String aVariable2;
String aVariable3;