Skip to content

Commit

Permalink
style: format some files
Browse files Browse the repository at this point in the history
  • Loading branch information
nokazn committed Jan 4, 2024
1 parent 744a463 commit 6b7f093
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
error: TS2304 [ERROR]: Cannot find name 'nothing'.
export { nothing }
export { nothing };
~~~~~~~
at [WILDCARD]
2 changes: 1 addition & 1 deletion cli/tests/testdata/check/exclude_option/ignored/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { nothing }
export { nothing };
6 changes: 3 additions & 3 deletions cli/tests/testdata/check/exclude_option/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { nothing } from "./ignored/index.ts"
import { nothing } from "./ignored/index.ts";

const foo = 1
const foo = 1;

export { foo, nothing }
export { foo, nothing };

0 comments on commit 6b7f093

Please sign in to comment.