blob: 86aff07a10a8b2ed0f7c1c8bd64dee3b42c4c583 [file] [log] [blame]
==== assignments-new-lines
a=1;b=2;c=3;
==
a = 1;
b = 2;
c = 3;
==== switch-new-lines
function hello(){switch(a){case 0:return 0;default:return 1;}}
==
function hello () {
switch (a) {
case 0:
return 0;
default:
return 1;
}
}
==> formatter.statement.new.line = false
==== assignments-no-new-line
a=1;b=2;c=3;
==
a = 1;b = 2;c = 3;
==== switch-no-new-lines
function hello(){switch(a){case 0:return 0;default:return 1;}}
==
function hello () {switch (a) {case 0:return 0;default:return 1;}}