Skip to content

Commit

Permalink
chore: prettier2
Browse files Browse the repository at this point in the history
  • Loading branch information
bradzacher committed May 4, 2020
1 parent d6555ec commit 84429e5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/scope-manager/tests/fixtures/export/default4.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
//// @sourceType = module

export default function() {}
export default function () {}
Original file line number Diff line number Diff line change
@@ -1 +1 @@
const foo = function() {};
const foo = function () {};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const parentScoped = 1;

const foo = function() {
const foo = function () {
parentScoped + 1;
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const outer = 1;
const foo = function(a, [b], { c }, d = 1, e = a, f = outer, g) {
const foo = function (a, [b], { c }, d = 1, e = a, f = outer, g) {
a;
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const foo = function() {
const foo = function () {
let i = 0;
var j = 20;

Expand Down

0 comments on commit 84429e5

Please sign in to comment.