-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.spellcheck.yaml
More file actions
28 lines (28 loc) · 767 Bytes
/
.spellcheck.yaml
File metadata and controls
28 lines (28 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
matrix:
- name: Markdown
sources:
# Ignore the autogenerated markdown files
- ./**/*.md|!./CHANGELOG.md|!./vendor/**
dictionary:
wordlists:
- .wordlist.txt
aspell:
lang: en
d: en_US
pipeline:
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore multiline content between fences (fences can have 3 or more back ticks)
# ```
# content
# ```
- open: '(?s)^(?P<open> *`{3,})'
close: '^(?P=open)$'
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
ignores:
- ':matches(code, pre)'
- 'code'
- 'pre'