forked from hutchris/prtg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pyspelling.yml
89 lines (86 loc) · 1.98 KB
/
.pyspelling.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
spellchecker: aspell
matrix:
- name: restructedtext
sources:
- ./**/*.rst
hunspell:
d: docs/spelling_wordlist.txt
aspell:
lang: en
dictionary:
wordlists:
- docs/spelling_wordlist.txt
output: build/dictionary/restructured.dic
pipeline:
- resplendent.filters.restructuredtext:
- pyspelling.filters.html:
comments: false
attributes:
- title
- alt
ignores:
- code
- pre
- pyspelling.filters.url:
- name: markdown
sources:
- ./**/*.md
hunspell:
d: docs/spelling_wordlist.txt
aspell:
lang: en
dictionary:
wordlists:
- docs/spelling_wordlist.txt
output: build/dictionary/mkdocs.dic
pipeline:
- pyspelling.filters.markdown:
- pyspelling.filters.html:
comments: false
attributes:
- title
- alt
ignores:
- code
- pre
- pyspelling.filters.url:
- name: python
sources:
- ./**/*.py
hunspell:
d: docs/src/dictionary/hunspell/en_AU
aspell:
lang: en
dictionary:
wordlists:
- docs/spelling_wordlist.txt
output: build/dictionary/python.dic
pipeline:
- pyspelling.filters.python:
group_comments: true
- pyspelling.flow_control.wildcard:
allow:
- py-comment
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore lint (noqa) and coverage (pragma) as well as shebang (#!)
- open: '^(?: *(?:noqa\b|pragma: no cover)|!)'
close: '$'
# Ignore Python encoding string -*- encoding stuff -*-
- open: '^ *-\*-'
close: '-\*-$'
- pyspelling.filters.context:
context_visible_first: true
escapes: '\\[\\`]'
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)'
- pyspelling.filters.url: