From aedb90a420b955f538d1b75d523924db746084b2 Mon Sep 17 00:00:00 2001 From: hgpark Date: Mon, 26 Aug 2024 22:04:13 +0900 Subject: [PATCH] refactor: biome organize import --- src/merge.schema.ts | 2 +- test/merge.schema.spec.ts | 4 ++-- test/string-enum.schema.spec.ts | 6 +++--- test/string-with-auto-complete.schema.spec.ts | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/merge.schema.ts b/src/merge.schema.ts index e711d2d..bec7dc0 100644 --- a/src/merge.schema.ts +++ b/src/merge.schema.ts @@ -1,9 +1,9 @@ import { Kind, - Type, type ObjectOptions, type TObject, type TProperties, + Type, } from '@sinclair/typebox'; import type { Prettify } from './types'; diff --git a/test/merge.schema.spec.ts b/test/merge.schema.spec.ts index 2dd0f3d..a3b1f15 100644 --- a/test/merge.schema.spec.ts +++ b/test/merge.schema.spec.ts @@ -1,6 +1,6 @@ -import { Type, TypeGuard, type Static } from '@sinclair/typebox'; +import { describe, expect, test } from 'bun:test'; +import { type Static, Type, TypeGuard } from '@sinclair/typebox'; import { Merge } from '../src/merge.schema'; -import { describe, test, expect } from 'bun:test'; describe('Merge', () => { test('base with Type.Object', () => { diff --git a/test/string-enum.schema.spec.ts b/test/string-enum.schema.spec.ts index 93a4e1c..66eb010 100644 --- a/test/string-enum.schema.spec.ts +++ b/test/string-enum.schema.spec.ts @@ -1,7 +1,7 @@ -import { Type, TypeGuard, type Static } from '@sinclair/typebox'; -import { describe, test, expect } from 'bun:test'; -import { StringEnum, IsStringEnum } from '../src/string-enum.schema'; +import { describe, expect, test } from 'bun:test'; +import { type Static, Type, TypeGuard } from '@sinclair/typebox'; import { Value } from '@sinclair/typebox/value'; +import { IsStringEnum, StringEnum } from '../src/string-enum.schema'; describe('StringEnum', () => { test('base', () => { diff --git a/test/string-with-auto-complete.schema.spec.ts b/test/string-with-auto-complete.schema.spec.ts index ed169ad..4db34ce 100644 --- a/test/string-with-auto-complete.schema.spec.ts +++ b/test/string-with-auto-complete.schema.spec.ts @@ -1,5 +1,5 @@ -import { TypeGuard, type Static } from '@sinclair/typebox'; -import { describe, test, expect } from 'bun:test'; +import { describe, expect, test } from 'bun:test'; +import { type Static, TypeGuard } from '@sinclair/typebox'; import { Value } from '@sinclair/typebox/value'; import { StringWithAutoComplete } from '../src/string-with-auto-complete.schema';