remove whitespace from the end of the last newline and improve newlines for switches

This commit is contained in:
Sebastian McKenzie
2015-02-21 03:22:44 +11:00
parent 60a7e40140
commit 8d92a75190
5 changed files with 33 additions and 8 deletions

View File

@@ -1,4 +1,5 @@
function test() {
/*
* this is comment
*/

View File

@@ -20,8 +20,10 @@
switch (_ret) {
case "continue":
continue;
case "break":
break;
default:
if (typeof _ret === "object") return _ret.v;
}