Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
hansl committed Apr 2, 2024
1 parent f987922 commit 8bb2f24
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions core/engine/tests/assets/dir1/file1_1.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {file1_2} from './file1_2.js';
import { file1_2 } from "./file1_2.js";

export function file1_1() {
return 'file1_1' + '.' + file1_2();
return "file1_1" + "." + file1_2();
}
2 changes: 1 addition & 1 deletion core/engine/tests/assets/dir1/file1_2.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export function file1_2() {
return 'file1_2';
return "file1_2";
}
4 changes: 2 additions & 2 deletions core/engine/tests/assets/file1.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {file1_1} from './dir1/file1_1.js';
import { file1_1 } from "./dir1/file1_1.js";

export function file1() {
return 'file1' + '..' + file1_1();
return "file1" + ".." + file1_1();
}

0 comments on commit 8bb2f24

Please sign in to comment.