From 4bb2399f1b3a1ce1fcf88f642a3414635855cd15 Mon Sep 17 00:00:00 2001 From: Jannis Hell Date: Mon, 5 Aug 2024 12:37:45 +0200 Subject: [PATCH] `capitalized-comments`: Add v8 to the `ignorePattern` option (#88) --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 31082fa..2d1435f 100644 --- a/index.js +++ b/index.js @@ -302,7 +302,7 @@ const rules = { { // You can also ignore this rule by wrapping the first word in quotes. // c8 => https://github.com/bcoe/c8 - ignorePattern: /pragma|ignore|prettier-ignore|webpack\w+:|c8|type-coverage:/.source, + ignorePattern: /pragma|ignore|prettier-ignore|webpack\w+:|c8|v8|type-coverage:/.source, ignoreInlineComments: true, ignoreConsecutiveComments: true, },