mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 15:14:33 +00:00
feat(fmt): sort type-only named import/exports last (#25690)
Closes #22583
This commit is contained in:
parent
915b73571c
commit
a14e9f55b4
11 changed files with 15 additions and 12 deletions
|
@ -4,8 +4,8 @@
|
|||
// deno-lint-ignore-file prefer-primordials
|
||||
|
||||
import {
|
||||
type CallbackWithError,
|
||||
makeCallback,
|
||||
type CallbackWithError,
|
||||
} from "ext:deno_node/_fs/_fs_common.ts";
|
||||
import { fs } from "ext:deno_node/internal_binding/constants.ts";
|
||||
import { codeMap } from "ext:deno_node/internal_binding/uv.ts";
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
// deno-lint-ignore-file prefer-primordials
|
||||
|
||||
import {
|
||||
type CallbackWithError,
|
||||
makeCallback,
|
||||
type CallbackWithError,
|
||||
} from "ext:deno_node/_fs/_fs_common.ts";
|
||||
import {
|
||||
getValidatedPath,
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
// deno-lint-ignore-file prefer-primordials
|
||||
|
||||
import {
|
||||
type CallbackWithError,
|
||||
makeCallback,
|
||||
type CallbackWithError,
|
||||
} from "ext:deno_node/_fs/_fs_common.ts";
|
||||
import {
|
||||
getValidatedPath,
|
||||
|
|
|
@ -18,11 +18,11 @@ import {
|
|||
ChildProcessOptions,
|
||||
normalizeSpawnArguments,
|
||||
setupChannel,
|
||||
type SpawnOptions,
|
||||
spawnSync as _spawnSync,
|
||||
stdioStringToArray,
|
||||
type SpawnOptions,
|
||||
type SpawnSyncOptions,
|
||||
type SpawnSyncResult,
|
||||
stdioStringToArray,
|
||||
} from "ext:deno_node/internal/child_process.ts";
|
||||
import {
|
||||
validateAbortSignal,
|
||||
|
|
|
@ -13,7 +13,7 @@ import {
|
|||
} from "node:http";
|
||||
import { Agent as HttpAgent } from "node:_http_agent";
|
||||
import { createHttpClient } from "ext:deno_fetch/22_http_client.js";
|
||||
import { type ServerHandler, ServerImpl as HttpServer } from "node:http";
|
||||
import { ServerImpl as HttpServer, type ServerHandler } from "node:http";
|
||||
import { validateObject } from "ext:deno_node/internal/validators.mjs";
|
||||
import { kEmptyObject } from "ext:deno_node/internal/util.mjs";
|
||||
import { Buffer } from "node:buffer";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue