File size: 2,214 Bytes
065fee7 |
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 |
spellchecker: aspell
matrix:
- name: mkdocs
sources:
- site/**/*.html
hunspell:
d: 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'
- '.MathJax_Preview, .md-nav__link, .md-footer-custom-text, .md-source__repository, .headerlink, .md-icon'
- '.md-social__link'
- pyspelling.filters.url:
- name: markdown
sources:
- README.md
hunspell:
d: 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:
- pyspelling.filters.html:
comments: false
attributes:
- title
- alt
ignores:
- :is(code, pre)
- pyspelling.filters.url:
- name: python
sources:
- setup.py
- '{soupsieve,tests,tools}/**/*.py'
hunspell:
d: 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)'
- pyspelling.filters.url:
|