mirror of
https://github.com/stablyai/orca.git
synced 2026-09-21 16:02:20 +00:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
import process from 'node:process'
|
|
import { resolveOxcCliInvocation } from './oxc-cli-invocation.mjs'
|
|
|
|
export function resolveOxlintInvocation(root = process.cwd()) {
|
|
return resolveOxcCliInvocation('oxlint', 'oxlint', root)
|
|
}
|