Ignore case on spellcheck (#463)

spellcheck ignore case, like other modules
This commit is contained in:
Chayim 2023-01-25 11:13:19 +02:00 committed by GitHub
parent 5c0c0b4b6f
commit 721f734aff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,25 +2,27 @@ matrix:
- name: Markdown - name: Markdown
expect_match: false expect_match: false
apsell: apsell:
mode: en lang: en
d: en_US
ignore-case: true
dictionary: dictionary:
wordlists: wordlists:
- .github/wordlist.txt - .github/wordlist.txt
output: wordlist.dic output: wordlist.dic
encoding: utf-8
pipeline: pipeline:
- pyspelling.filters.markdown: - pyspelling.filters.markdown:
markdown_extensions: markdown_extensions:
- markdown.extensions.extra: - markdown.extensions.extra:
- pyspelling.filters.html: - pyspelling.filters.html:
comments: true comments: false
attributes: attributes:
- alt - alt
ignores: ignores:
- ':matches(code, pre)' - ':matches(code, pre)'
- 'code' - code
- 'pre' - pre
- 'blockquote' - blockquote
- img
sources: sources:
- '*.md' - '*.md'
- 'docs/*.md' - 'docs/*.md'