From 97f53ea1a3879d0c8ec88d4e060fb31bd6cd3ce3 Mon Sep 17 00:00:00 2001 From: Sergio Date: Sun, 15 Mar 2026 17:38:36 -0500 Subject: [PATCH] style: fix import sort order in doctor.ts Co-Authored-By: Claude Opus 4.6 (1M context) --- src/commands/doctor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/doctor.ts b/src/commands/doctor.ts index a2ea8c986ab..41b20dee038 100644 --- a/src/commands/doctor.ts +++ b/src/commands/doctor.ts @@ -49,13 +49,13 @@ import { import { createDoctorPrompter, type DoctorOptions } from "./doctor-prompter.js"; import { maybeRepairSandboxImages, noteSandboxScopeWarnings } from "./doctor-sandbox.js"; import { noteSecurityWarnings } from "./doctor-security.js"; -import { noteSyntheticAllowlistGaps } from "./doctor-synthetic-allowlist.js"; import { noteSessionLockHealth } from "./doctor-session-locks.js"; import { noteStateIntegrity, noteWorkspaceBackupTip } from "./doctor-state-integrity.js"; import { detectLegacyStateMigrations, runLegacyStateMigrations, } from "./doctor-state-migrations.js"; +import { noteSyntheticAllowlistGaps } from "./doctor-synthetic-allowlist.js"; import { maybeRepairUiProtocolFreshness } from "./doctor-ui.js"; import { maybeOfferUpdateBeforeDoctor } from "./doctor-update.js"; import { noteWorkspaceStatus } from "./doctor-workspace-status.js";