From 48e9d0a41369abfbd8275569e2a0679e6b1c0eba Mon Sep 17 00:00:00 2001 From: Iacovos Constantinou Date: Tue, 6 Aug 2024 22:16:30 +0300 Subject: [PATCH] Fix typo --- designs/2024-baseline-support/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designs/2024-baseline-support/README.md b/designs/2024-baseline-support/README.md index e1e0ba79..2ca004db 100644 --- a/designs/2024-baseline-support/README.md +++ b/designs/2024-baseline-support/README.md @@ -84,7 +84,7 @@ Consider the following scenario: * After fixing a violation, the suppressions file still contains the now-resolved violation. * Running `eslint ./src` again reports no violations but exits with a non-zero status code, indicating the suppressions file needs updating. -To address this, a new option `--prune-suggestions` will be introduced to ESLint. This boolean flag removes resolved violations from the suppressions file without adding new ones, unlike `--suppress-all`. +To address this, a new option `--prune-suppressions` will be introduced to ESLint. This boolean flag removes resolved violations from the suppressions file without adding new ones, unlike `--suppress-all`. ``` bash eslint --prune-suppressions ./src