From 582643e9a6f99d3bf309726fd1185196703e4a02 Mon Sep 17 00:00:00 2001 From: "Alexander V. Hopp" Date: Wed, 24 Jan 2024 16:51:17 +0100 Subject: [PATCH] Try to ignore python parts --- .pyspelling.yml | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/.pyspelling.yml b/.pyspelling.yml index 97b10c676..a48530a4e 100644 --- a/.pyspelling.yml +++ b/.pyspelling.yml @@ -1,14 +1,25 @@ matrix: - name: Markdown - aspell: - lang: en + expect_match: false + apsell: + mode: en dictionary: + wordlists: + - .wordlist.txt + output: wordlist.dic encoding: utf-8 pipeline: - pyspelling.filters.markdown: - delimiters: - - open: "```" - close: "```" + markdown_extensions: + - markdown.extensions.extra: + - pyspelling.filters.html: + comments: false + attributes: + - alt + ignores: + - ':matches(code, pre)' + - 'code' + - 'pre' + - 'blockquote' sources: - - '**/*.md' - default_encoding: utf-8 \ No newline at end of file + - '*.md' \ No newline at end of file