From d81426df39877cc4e33562fc5209ce101a7a15b1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 8 Apr 2025 10:41:37 -0400 Subject: [PATCH] change links checked output from !quiet to verbose --- markdown-link-check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/markdown-link-check b/markdown-link-check index 8739690..8cc36a0 100755 --- a/markdown-link-check +++ b/markdown-link-check @@ -55,7 +55,7 @@ const reporters = { } }); - if (!opts.quiet) { + if (opts.verbose) { console.log("\n %s link%s checked.", results.length, results.length === 1 ? '' : 's'); }