Presets
The plugin ships with seven Flat Config-ready presets.
Available presetsâ
- đĄ
recommended - đ
recommended-ci - đ”
recommended-detailed - đŁ
recommended-compact - âȘ
recommended-summary-only - đą
recommended-tty - đ€
recommended-ci-detailed
Which preset should you choose?â
- Choose đĄ recommended for standard local CLI progress.
- Choose đ recommended-ci when CI should stay quiet.
- Choose đ” recommended-detailed when you want richer end-of-run stats.
- Choose đŁ recommended-compact when file names are unnecessary noise.
- Choose âȘ recommended-summary-only when only the final summary matters.
- Choose đą recommended-tty when the same config is reused in non-interactive environments.
- Choose đ€ recommended-ci-detailed when CI should avoid live output but still print a final detailed summary.
Preset matrixâ
Generated from the preset registry.
| Preset | Rule | Key options | Intended use |
|---|---|---|---|
đĄ recommended | file-progress/activate | defaults | Default per-file progress for local CLI runs. |
đ recommended-ci | file-progress/activate | hide: CI === "true" | Hide all plugin output in CI. |
đ€ recommended-ci-detailed | file-progress/activate | detailedSuccess: true, hide: CI === "true", showSummaryWhenHidden: CI === "true" | Keep CI quiet while still printing a detailed final summary there. |
đŁ recommended-compact | file-progress/activate | mode: "compact" | Use compact live mode without per-file paths. |
đ” recommended-detailed | file-progress/activate | detailedSuccess: true | Keep full per-file progress and enrich the final summary. |
âȘ recommended-summary-only | file-progress/activate | mode: "summary-only" | Print only the final summary line. |
đą recommended-tty | file-progress/activate | ttyOnly: true | Only show progress on interactive terminals. |