Skip to content

Wrong pyspelling config #677

@schuellerf

Description

@schuellerf

The config .spellcheck.yml is wrong and ignores all lines after ``` until the end of the file as the regex is greedy (including newlines)

The fix is to remove the (?s)

--- a/.spellcheck.yml
+++ b/.spellcheck.yml
@@ -19,7 +19,7 @@ matrix:
       # ```language
       # content
       # ```
-      - open: '(?s)^(?P<open> *`{3,}).*$'
+      - open: '^(?P<open> *`{3,}).*$'
         close: '^(?P=open)$'
       # Ignore text between inline back ticks
       - open: '(?P<open>`+)'

I didn't dare to commit this as PR as then ALL documents need to be updated.

Metadata

Metadata

Assignees

Labels

bugSomething isn't workinggood first issueGood for newcomers

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions