Skip to content

Commit e9a6a58

Browse files
committed
Format repo
1 parent aae1611 commit e9a6a58

File tree

27 files changed

+27
-27
lines changed

27 files changed

+27
-27
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { two } from './two';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return [await two(...args), await two(...args)];
55
}

test/fixtures/basic-css/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import './two.css';
22

3-
export default function() {
3+
export default function () {
44
const el = document.createElement('div');
55
el.className = 'testing';
66
return el;

test/fixtures/basic-dashed-external/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ console.log(tinyglob);
33

44
import { two } from './two';
55

6-
export default async function(...args) {
6+
export default async function (...args) {
77
return [await two(...args), await two(...args)];
88
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import two from './two.json';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return two;
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { two } from './two';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return [await two(...args), await two(...args)];
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { two } from './two';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return [await two(...args), await two(...args)];
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { two } from './two';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return [await two(...args), await two(...args)];
55
}

test/fixtures/basic/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { two } from './two';
22

3-
export default async function(...args) {
3+
export default async function (...args) {
44
return [await two(...args), await two(...args)];
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import './not_scoped.css';
22
import './not_scoped.module.css';
33

4-
export default function() {}
4+
export default function () {}

test/fixtures/css-modules--null/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import './not_scoped.css';
22
import scoped from './scoped.module.css';
33

4-
export default function() {
4+
export default function () {
55
const el = document.createElement('div');
66
el.className = scoped.scoped_class;
77
return el;

0 commit comments

Comments
 (0)