From 95d1ef4b4a010c58446c7fffd45e6f5901ffc60f Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 13 May 2022 17:06:34 +1000 Subject: [PATCH] Ignore imports when check spell --- .cspell.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.cspell.json b/.cspell.json index 2edaefd0a9..10a73c7821 100644 --- a/.cspell.json +++ b/.cspell.json @@ -113,5 +113,12 @@ "gen", "proto", "*.spec.ts" - ] + ], + "patterns": [ + { + "name": "import", + "pattern": "/import .*/" + } + ], + "ignoreRegExpList": ["import"] }