From ee04ba451e0ddd9cbb0eb28e1ed5d51589f01441 Mon Sep 17 00:00:00 2001 From: wassname <1103714+wassname@users.noreply.github.com> Date: Wed, 1 Jul 2026 06:52:10 +0800 Subject: [PATCH] lint: biome import ordering and unused imports Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com> --- src/index.ts | 6 ++---- test/task-list-render.test.ts | 4 +--- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/index.ts b/src/index.ts index 45b8be4..e501bd3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -19,17 +19,15 @@ */ import { randomUUID } from "node:crypto"; -import { readFileSync } from "node:fs"; -import { join } from "node:path"; import type { ExtensionCommandContext, ExtensionContext } from "@mariozechner/pi-coding-agent"; import { Type } from "@sinclair/typebox"; import { AutoClearManager } from "./auto-clear.js"; import { + type CadenceConfig, + type CadenceState, createCadenceState, drainReminderForContext, evaluateToolResult, - type CadenceConfig, - type CadenceState, } from "./reminder-cadence.js"; import { TaskStore } from "./task-store.js"; import { loadTasksConfig } from "./tasks-config.js"; diff --git a/test/task-list-render.test.ts b/test/task-list-render.test.ts index 9038a35..580f6be 100644 --- a/test/task-list-render.test.ts +++ b/test/task-list-render.test.ts @@ -1,6 +1,4 @@ -import { mkdtempSync, rmSync } from "node:fs"; -import { tmpdir } from "node:os"; -import { join } from "node:path"; +import { rmSync } from "node:fs"; import { afterEach, describe, expect, it, vi } from "vitest"; import proofTasksExtension from "../src/index.js";