voidzero-dev / voidzero-dev/vite-plus

vp lint / vp run lint print no summary on a clean pass (unlike vp exec turbo run lint)

オープン
#2,035 コメント 2 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Rust
スター
5.8k
フォーク
262
平均マージ
23時間 41分
マージ済み PR(30日)
138

説明

## Summary

Running `vp lint ` (or `vp run lint`, the task-runner form) directly prints **nothing at all** and exits 0 when there are zero lint violations — no "Found 0 warnings and 0 errors" summary, no file/rule count, nothing. The same underlying lint task, when invoked via `vp exec turbo run lint --filter=`, prints the full oxlint summary line even on a clean pass:

```
manolea-placeholder:lint: $ vp lint .
manolea-placeholder:lint: Found 0 warnings and 0 errors.
manolea-placeholder:lint: Finished in 422ms on 1103 files with 95 rules using 16 threads.
```

To be clear, this is **not** a correctness bug — I verified with injected violations that both invocation paths correctly detect and report real problems (a syntax error fails with exit 1 and the parse error text; a `debugger;` statement prints the `eslint(no-debugger)` warning by name in both paths). The only difference is the empty-output case.

## Why this is worth fixing

Empty stdout + exit 0 is ambiguous to a human running `vp lint .` locally before pushing: "no output" could mean "ran cleanly" or "didn't actually run" (e.g. wrong cwd, misconfigured filter, crashed silently). The turbo-wrapped invocation resolves that ambiguity by always printing a summary; the direct `vp lint`/`vp run lint` invocation doesn't.

## Repro

In a workspace with a shared `vite.config.ts` (via `defineConfig()`, exporting `lint`/`run`/etc. sub-configs) and a package whose `package.json` has `"lint": "vp lint ."`:

```sh
# From the package directory — prints nothing, exit 0
cd packages/some-pkg
vp lint .
echo $? # 0

# From the workspace root — prints a summary even though nothing changed
vp exec turbo run lint --filter=some-pkg --force
```

## Ask

Have `vp lint`/`vp run lint` print the same "Found N warnings and M errors. Finished in Xms on Y files with Z rules" summary on a clean pass that `vp exec turbo run lint` shows, so a passing run is visibly distinguishable from a run that silently did nothing.

## Environment

- vite-plus 0.2.1
- oxlint 1.70.0
- Linux x86_64

コントリビューションガイド

コントリビューションガイドを開く

調査の方向性

issue にある直接的な `vp lint .` と `vp exec turbo run lint --filter=some-pkg --force` コマンドを再現し、クリーンパス時の出力を比較します。`vp lint`/`vp run lint` の経路と、基盤となる oxlint の結果の処理を追跡します。完了条件は、クリーンな直接実行で警告/エラー、時間、ファイル、ルールの概要が出力され、報告された終了ステータスが維持されることです。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
javascript, rust, typescript
領域
tooling
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
活発
明瞭さ
明確に書かれている
初心者へのやさしさ
68/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。