From 1c9d08f7fa36e04bfd3edbda00f73fcc01853867 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Tue, 14 Apr 2026 09:33:14 +0530 Subject: [PATCH] style: reorder `tool` import after other imports for consistency --- .opencode/tools/ask262-get-section-content.ts | 2 +- .opencode/tools/ask262-search-spec-sections.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.opencode/tools/ask262-get-section-content.ts b/.opencode/tools/ask262-get-section-content.ts index 3536a14..7d5d8e6 100644 --- a/.opencode/tools/ask262-get-section-content.ts +++ b/.opencode/tools/ask262-get-section-content.ts @@ -3,8 +3,8 @@ * Retrieves full content from a specific ECMAScript spec section. */ -import { tool } from "@opencode-ai/plugin"; import * as lancedbSdk from "@lancedb/lancedb"; +import { tool } from "@opencode-ai/plugin"; import { createGetSectionContentTool, toolMetadata, diff --git a/.opencode/tools/ask262-search-spec-sections.ts b/.opencode/tools/ask262-search-spec-sections.ts index 3a4a5c4..1d5e0ea 100644 --- a/.opencode/tools/ask262-search-spec-sections.ts +++ b/.opencode/tools/ask262-search-spec-sections.ts @@ -3,9 +3,9 @@ * Searches the ECMAScript specification for relevant sections. */ -import { tool } from "@opencode-ai/plugin"; import * as lancedbSdk from "@lancedb/lancedb"; import { OllamaEmbeddings } from "@langchain/ollama"; +import { tool } from "@opencode-ai/plugin"; import { createSearchSpecSectionsTool, toolMetadata,