Hardcode to double quotes, indent to 2 spaces (#5824)

This commit is contained in:
Henry Zhu
2017-06-05 23:14:37 -04:00
committed by Brian Ng
parent b0524427c1
commit 123dce5fcd
46 changed files with 276 additions and 322 deletions

View File

@@ -6,7 +6,7 @@ var args = [1, 2, 3];
var obj = { obj: { fn } };
switch (true) {
case true:
(_obj$obj = obj.obj).fn.apply(_obj$obj, args);
break;
}
case true:
(_obj$obj = obj.obj).fn.apply(_obj$obj, args);
break;
}

View File

@@ -1,5 +1,5 @@
class Foo {
bar() {
super.bar.apply(this, [arg1, arg2].concat(babelHelpers.toConsumableArray(args)));
}
}
bar() {
super.bar.apply(this, [arg1, arg2].concat(babelHelpers.toConsumableArray(args)));
}
}

View File

@@ -1,5 +1,5 @@
class Foo {
bar() {
super.bar.apply(this, babelHelpers.toConsumableArray(args));
}
}
bar() {
super.bar.apply(this, babelHelpers.toConsumableArray(args));
}
}