better whitespace for VariableDeclarations

This commit is contained in:
Sebastian McKenzie
2015-01-19 22:09:05 +11:00
parent 857abf5024
commit 4a1addc558
2 changed files with 9 additions and 8 deletions

View File

@@ -5,8 +5,10 @@ let foo = "foo";
var foo = "bar";
const foo = "foo";
let foo, bar = "bar";
var foo, bar = "bar";
let foo,
bar = "bar";
var foo,
bar = "bar";
let foo = "foo",
bar = "bar";