From 721f734aff770f56c54701629f578fe175d9ddda Mon Sep 17 00:00:00 2001 From: Chayim Date: Wed, 25 Jan 2023 11:13:19 +0200 Subject: [PATCH] Ignore case on spellcheck (#463) spellcheck ignore case, like other modules --- .github/spellcheck-settings.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/spellcheck-settings.yml b/.github/spellcheck-settings.yml index 2319659..f9cc6c2 100644 --- a/.github/spellcheck-settings.yml +++ b/.github/spellcheck-settings.yml @@ -2,25 +2,27 @@ matrix: - name: Markdown expect_match: false apsell: - mode: en + lang: en + d: en_US + ignore-case: true dictionary: wordlists: - .github/wordlist.txt output: wordlist.dic - encoding: utf-8 pipeline: - pyspelling.filters.markdown: markdown_extensions: - markdown.extensions.extra: - pyspelling.filters.html: - comments: true + comments: false attributes: - alt ignores: - ':matches(code, pre)' - - 'code' - - 'pre' - - 'blockquote' + - code + - pre + - blockquote + - img sources: - '*.md' - 'docs/*.md'