forked from ddev/ddev
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.spellcheck.yml
More file actions
29 lines (29 loc) · 756 Bytes
/
.spellcheck.yml
File metadata and controls
29 lines (29 loc) · 756 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
29
matrix:
- name: Markdown
aspell:
lang: en
ignore-case: true
dictionary:
wordlists:
- .spellcheckwordlist.txt
encoding: utf-8
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- pymdownx.superfences:
disable_indented_code_blocks: true
- pyspelling.filters.html:
comments: false
ignores:
- code
- pre
- pyspelling.filters.url:
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore content between `:`, like `:octicons-file-directory-16:`
- open: '(?P<open>:+)'
close: '(?P=open)'
sources:
- 'docs/**/*.md|!docs/content/developers/*|!docs/content/users/topics/version-history.md'
default_encoding: utf-8