lint: biome import ordering and unused imports

Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com>
This commit is contained in:
wassname
2026-07-01 06:52:10 +08:00
co-authored by Claudypoo
parent fbde665669
commit ee04ba451e
2 changed files with 3 additions and 7 deletions
+2 -4
View File
@@ -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";
+1 -3
View File
@@ -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";