style: apply oxfmt

This commit is contained in:
Peter Steinberger
2026-04-12 11:28:10 -07:00
parent 67af6f0baf
commit e76c2812b7
8 changed files with 44 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
import type { Dirent } from "node:fs";
import { createHash } from "node:crypto";
import type { Dirent } from "node:fs";
import fs from "node:fs/promises";
import path from "node:path";
import {

View File

@@ -1,4 +1,7 @@
export function resolveMemorySearchPreflight(params: { query: string; hasIndexedContent: boolean }):
export function resolveMemorySearchPreflight(params: {
query: string;
hasIndexedContent: boolean;
}):
| {
normalizedQuery: string;
shouldInitializeProvider: boolean;