From a14e9f55b4efc39689e1cc76b44bc6c1be51efa5 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 17 Sep 2024 18:26:23 +0100 Subject: feat(fmt): sort type-only named import/exports last (#25690) Closes #22583 --- tests/testdata/repl/import_type.ts | 2 +- tests/testdata/run/import_type.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/testdata/repl/import_type.ts b/tests/testdata/repl/import_type.ts index 851ebad86..0bee21747 100644 --- a/tests/testdata/repl/import_type.ts +++ b/tests/testdata/repl/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "./subdir/export_types.ts"; +import { create, type B } from "./subdir/export_types.ts"; const b: B = create(); diff --git a/tests/testdata/run/import_type.ts b/tests/testdata/run/import_type.ts index 22c639cbc..65e140cda 100644 --- a/tests/testdata/run/import_type.ts +++ b/tests/testdata/run/import_type.ts @@ -1,4 +1,4 @@ -import { type B, create } from "../subdir/export_types.ts"; +import { create, type B } from "../subdir/export_types.ts"; const b: B = create(); -- cgit v1.2.3