From 6b7f0930acd1316cfff3cfcdf4b198c3049d52ae Mon Sep 17 00:00:00 2001 From: nokazn <41154684+nokazn@users.noreply.github.com> Date: Thu, 4 Jan 2024 06:23:38 +0900 Subject: [PATCH] style: format some files --- .../check/exclude_option/exclude_option.ts.error.out | 2 +- cli/tests/testdata/check/exclude_option/ignored/index.ts | 2 +- cli/tests/testdata/check/exclude_option/index.ts | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/tests/testdata/check/exclude_option/exclude_option.ts.error.out b/cli/tests/testdata/check/exclude_option/exclude_option.ts.error.out index d443255a7bdbfa..abd1c125861e33 100644 --- a/cli/tests/testdata/check/exclude_option/exclude_option.ts.error.out +++ b/cli/tests/testdata/check/exclude_option/exclude_option.ts.error.out @@ -1,4 +1,4 @@ error: TS2304 [ERROR]: Cannot find name 'nothing'. -export { nothing } +export { nothing }; ~~~~~~~ at [WILDCARD] diff --git a/cli/tests/testdata/check/exclude_option/ignored/index.ts b/cli/tests/testdata/check/exclude_option/ignored/index.ts index a58b95e2fa089b..0419cf073c4b29 100644 --- a/cli/tests/testdata/check/exclude_option/ignored/index.ts +++ b/cli/tests/testdata/check/exclude_option/ignored/index.ts @@ -1 +1 @@ -export { nothing } +export { nothing }; diff --git a/cli/tests/testdata/check/exclude_option/index.ts b/cli/tests/testdata/check/exclude_option/index.ts index 59330b826a546e..8335ca3a2e25a6 100644 --- a/cli/tests/testdata/check/exclude_option/index.ts +++ b/cli/tests/testdata/check/exclude_option/index.ts @@ -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 };