Ignore case on spellcheck (#463)
spellcheck ignore case, like other modules
This commit is contained in:
parent
5c0c0b4b6f
commit
721f734aff
1 changed files with 8 additions and 6 deletions
14
.github/spellcheck-settings.yml
vendored
14
.github/spellcheck-settings.yml
vendored
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue