-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
.pyspelling.yml
111 lines (108 loc) · 2.75 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
jobs: 8
matrix:
- name: mkdocs
sources:
- site/**/*.html
hunspell:
d: docs/src/dictionary/hunspell/en_US
aspell:
lang: en
dictionary:
wordlists:
- docs/src/dictionary/en-custom.txt
output: build/dictionary/mkdocs.dic
pipeline:
- pyspelling.filters.html:
comments: false
attributes:
- title
- alt
ignores:
- 'code, pre, a.magiclink, span.keys, textarea, sub, sup'
- '.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon'
- '.md-social__link'
- '.swatch[title]'
- '.playground .gamut'
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore possessive endings
- open: '(?<=\w)''s(?!\w)'
close: '\b'
- pyspelling.filters.url:
- name: markdown
sources:
- README.md
hunspell:
d: docs/src/dictionary/hunspell/en_US
aspell:
lang: en
dictionary:
wordlists:
- docs/src/dictionary/en-custom.txt
output: build/dictionary/mkdocs.dic
pipeline:
- pyspelling.filters.markdown:
markdown_extensions:
- pymdownx.superfences:
- pymdownx.highlight:
- pymdownx.striphtml:
- pymdownx.magiclink:
- pyspelling.filters.html:
comments: false
attributes:
- title
- alt
ignores:
- code
- pre
- pyspelling.filters.context:
context_visible_first: true
delimiters:
# Ignore possessive endings
- open: '(?<=\w)''s(?!\w)'
close: '\b'
- pyspelling.filters.url:
- name: python
sources:
- setup.py
- "{coloraide,tests,tools}/**/*.py"
hunspell:
d: docs/src/dictionary/hunspell/en_US
aspell:
lang: en
dictionary:
wordlists:
- docs/src/dictionary/en-custom.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|type: .*?)|!)'
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)'
- open: '(?<=\w)''s(?!\w)'
close: '\b'
- pyspelling.filters.url: