diff --git a/packages/cli/binding/src/check/mod.rs b/packages/cli/binding/src/check/mod.rs index f435bf81d9..9f6c54dac4 100644 --- a/packages/cli/binding/src/check/mod.rs +++ b/packages/cli/binding/src/check/mod.rs @@ -138,12 +138,6 @@ pub(crate) async fn execute_check( if fix && lint_enabled { args.push("--fix".to_string()); } - // `vp check` parses oxlint's human-readable summary output to print - // unified pass/fail lines. When `GITHUB_ACTIONS=true`, oxlint auto-switches - // to the GitHub reporter, which omits that summary on success and makes the - // parser think linting never started. Force the default reporter here so the - // captured output is stable across local and CI environments. - args.push("--format=default".to_string()); if !lint_enabled && type_check_enabled { args.push("--type-check-only".to_string()); }