Add support for R formatter in formatters (#3918)

Co-authored-by: Aiden Cline <aidenpcline@gmail.com>
This commit is contained in:
Kyle F Butts
2025-11-04 18:18:33 -06:00
committed by GitHub
parent f51bd91af4
commit 04546c0873
4 changed files with 49 additions and 2 deletions

View File

@@ -8,7 +8,10 @@ import { readableStreamToText } from "bun"
export namespace BunProc {
const log = Log.create({ service: "bun" })
export async function run(cmd: string[], options?: Bun.SpawnOptions.OptionsObject<any, any, any>) {
export async function run(
cmd: string[],
options?: Bun.SpawnOptions.OptionsObject<any, any, any>,
) {
log.info("running", {
cmd: [which(), ...cmd],
...options,