forked from cloudnative-pg/cloudnative-pg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.spellcheck.yaml
31 lines (31 loc) · 835 Bytes
/
.spellcheck.yaml
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
29
30
31
matrix:
- name: markdown
sources:
- 'docs/src/*.md'
- 'docs/src/*/*.md'
- 'config/olm-manifests/bases/*.yaml'
default_encoding: utf-8
aspell:
lang: en
d: en_US
dictionary:
wordlists:
- .wordlist-en-custom.txt
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)$'
# Ignore text between inline back ticks
- open: '(?P<open>`+)'
close: '(?P=open)'
- open: '(?P<open><!--)'
close: '(?P<close>-->)'
- open: '.*base64data.*'
close: "$"
- pyspelling.filters.url: