diff --git a/packages/core/src/formatter.ts b/packages/core/src/formatter.ts index 4eb6a91c5b..0ee56c1039 100644 --- a/packages/core/src/formatter.ts +++ b/packages/core/src/formatter.ts @@ -54,9 +54,6 @@ const layer = Layer.effect( }) formatters = builtIns if (configured === true) return - if (configured.ruff?.disabled || configured.uv?.disabled) { - formatters = formatters.filter((formatter) => formatter.name !== "ruff" && formatter.name !== "uv") - } for (const [name, entry] of Object.entries(configured)) { const index = formatters.findIndex((formatter) => formatter.name === name) diff --git a/packages/core/src/formatter/builtins.ts b/packages/core/src/formatter/builtins.ts index 9c9c51ab14..d86d9a3a80 100644 --- a/packages/core/src/formatter/builtins.ts +++ b/packages/core/src/formatter/builtins.ts @@ -18,7 +18,6 @@ export function make(input: { readonly fs: FSUtil.Interface readonly npm: Npm.Interface readonly processes: AppProcess.Interface - readonly experimentalOxfmt?: boolean }) { const disabled = false as const const findUp = (target: string) => input.fs.findUp(target, input.directory, input.worktree)