Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ matrix:
- pyspelling.filters.context:
context_visible_first: true
escapes: '^.*[\/\\][^\/\\]+$'
#Ignore content between backticks
- pyspelling.filters.context:
context_visible_first: true
delimiters:
- open: '`+[^`]+'
close: '`+'
#Ignore for upper camel case
- pyspelling.filters.context:
context_visible_first: true
Expand All @@ -27,6 +33,18 @@ matrix:
delimiters:
- open: '\b[a-z]+[A-Z]'
close: '[a-z0-9]*\b'
#Ignore for constants in upper case
- pyspelling.filters.context:
context_visible_first: true
delimiters:
- open: '\b[A-Z]+'
close: '([_][A-Z]+)*\b'
#Ignore for special cases in CobiGen in upper camel case
- pyspelling.filters.context:
context_visible_first: true
delimiters:
- open: '\b__[A-Z][a-z0-9]+[A-Z]'
close: '[a-z0-9.]*__\b'
- pyspelling.filters.context:
context_visible_first: true
escapes: \\[\\-~]
Expand All @@ -37,3 +55,9 @@ matrix:
# ----
- open: '(?s)^(?P<open> *-{4,})$'
close: '^(?P=open)$'
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore multiline content between [source, *] and blank line
- open: '\[source,.*\]'
close: '^\s*$'