-
Notifications
You must be signed in to change notification settings - Fork 441
Closed
Labels
bugSomething isn't workingSomething isn't workinggood first issueGood for newcomersGood for newcomers
Description
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 workingSomething isn't workinggood first issueGood for newcomersGood for newcomers