From fce27bb07f789ec8a190f7052f0910fbb6b51305 Mon Sep 17 00:00:00 2001 From: Ian Clanton-Thuon Date: Fri, 29 Mar 2024 01:22:26 -0400 Subject: [PATCH] Clean up a logging message. --- eslint/eslint-patch/src/eslint-bulk-suppressions/cli/prune.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint/eslint-patch/src/eslint-bulk-suppressions/cli/prune.ts b/eslint/eslint-patch/src/eslint-bulk-suppressions/cli/prune.ts index 5869b810b1..9caf0b2483 100755 --- a/eslint/eslint-patch/src/eslint-bulk-suppressions/cli/prune.ts +++ b/eslint/eslint-patch/src/eslint-bulk-suppressions/cli/prune.ts @@ -30,7 +30,7 @@ export async function pruneAsync(): Promise { console.log(`Pruning suppressions for ${allFiles.length} files...`); await runEslintAsync(allFiles, 'prune'); } else { - console.log('No files with existing suppressions found. Deleting the suppressions file, if one exists.'); + console.log('No files with existing suppressions found.'); deleteBulkSuppressionsFileInEslintrcFolder(normalizedCwd); } }