From b619e1af86142da15b669d21e58ec8ac0e9efcaa Mon Sep 17 00:00:00 2001 From: Rebecca Stevens Date: Tue, 8 Aug 2023 21:55:51 +1200 Subject: [PATCH] chore: fix cspell config for ignoring hex digits --- .cspell.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.cspell.json b/.cspell.json index db3334329..f0f0bbaf8 100644 --- a/.cspell.json +++ b/.cspell.json @@ -26,8 +26,8 @@ "import": ["@cspell/dict-cryptocurrencies/cspell-ext.json"], "ignoreRegExpList": [ "/[^\\s@]+@([^\\s@]+\\.)+[^\\s@]{2,4}/", - "/[A-Fa-f0-9]{6}/", - "/[A-Za-z0-9]{32,}/", + "/\\b[A-Fa-f0-9]{6}\\b/", + "/\\b[A-Za-z0-9]{32,}\\b/", "// @ts-.*", "/\\.\\/docs\\/rules\\/[^.]*.md/", "/\\STS\\S+/",