chore: fix formatting drift in extension sources (#48758)

This commit is contained in:
Josh Lehman
2026-03-16 22:43:21 -07:00
committed by GitHub
parent ac4aead8a7
commit 61ccc5bede
13 changed files with 36 additions and 35 deletions

View File

@@ -2,10 +2,7 @@ import { beforeEach, describe, expect, it, vi } from "vitest";
import { withBundledPluginAllowlistCompat } from "../bundled-compat.js";
import { __testing as providerTesting } from "../providers.js";
import { resolvePluginWebSearchProviders } from "../web-search-providers.js";
import {
providerContractPluginIds,
webSearchProviderContractRegistry,
} from "./registry.js";
import { providerContractPluginIds, webSearchProviderContractRegistry } from "./registry.js";
function uniqueSortedPluginIds(values: string[]) {
return [...new Set(values)].toSorted((left, right) => left.localeCompare(right));