pub(crate) fn format_timing(duration: Duration) -> StringExpand description
Format lint duration into time=<duration> snippet (auto-scaled, no color).
Note: Colorization (if any) is applied by the caller (e.g. in report) not here, keeping this helper suitable for
future machine-readable output modes.
ยงRationale
- Improves readability vs raw integer milliseconds; preserves sub-ms precision.
- Uses stable standard library formatting (no custom scaling logic).