fix: vsh lint

This commit is contained in:
xingyu4j
2026-03-13 23:26:29 +08:00
parent 92abf7edaa
commit 6acfee2737

View File

@@ -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',
}),