From 5e9060a6132cfb3ecacb6bfc8b5325ea7efeccfe Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Sat, 18 Nov 2023 09:56:18 -0500 Subject: [PATCH] Add skipping of codespell-ignore annotated lines --- .codespellrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 3a544e78..ec686145 100644 --- a/.codespellrc +++ b/.codespellrc @@ -5,7 +5,8 @@ check-hidden = true # Ignore all acronyms etc as plenty e.g. in fail2ban/server/strptime.py # Try to identify incomplete words which are part of a regex, hence having [] at the beginning # Ignore all urls as something with :// in it -ignore-regex = (\b([A-Z][A-Z][A-Z]+|gir\.st)\b)|\[[a-zA-Z]+\][a-z]+\b|[a-z]+://\S+ +# Ignore all lines with codespell-ignore in them for pragma annotation +ignore-regex = (\b([A-Z][A-Z][A-Z]+|gir\.st)\b)|\[[a-zA-Z]+\][a-z]+\b|[a-z]+://\S+|.*codespell-ignore.* # some oddly named variables, some names, etc # wee -- comes in regex etc for weeks ignore-words-list = theis,timere,alls,wee,wight,ans