From 6acfee273735f24389fc28fb29783aa76ee7acc0 Mon Sep 17 00:00:00 2001 From: xingyu4j Date: Fri, 13 Mar 2026 23:26:29 +0800 Subject: [PATCH] fix: vsh lint --- scripts/vsh/src/lint/index.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/scripts/vsh/src/lint/index.ts b/scripts/vsh/src/lint/index.ts index 93dec555c..848fb8bc3 100644 --- a/scripts/vsh/src/lint/index.ts +++ b/scripts/vsh/src/lint/index.ts @@ -22,9 +22,6 @@ async function runLint({ format }: LintCommandOptions) { await execaCommand(`oxlint . --fix`, { stdio: 'inherit', }); - await execaCommand(`oxlint . --type-aware --fix`, { - stdio: 'inherit', - }); await execaCommand(`eslint . --cache --fix`, { stdio: 'inherit', }); @@ -34,9 +31,6 @@ async function runLint({ format }: LintCommandOptions) { execaCommand(`oxfmt .`, { stdio: 'inherit', }), - execaCommand(`oxlint .`, { - stdio: 'inherit', - }), execaCommand(`oxlint . --type-aware`, { stdio: 'inherit', }),