summaryrefslogtreecommitdiff
path: root/.github/spellcheck-settings.yml
diff options
context:
space:
mode:
authorChayim <chayim@users.noreply.github.com>2023-08-19 07:06:47 +0300
committerGitHub <noreply@github.com>2023-08-18 21:06:47 -0700
commit039385bd8b9192a3994d75e75e377933f17d1f47 (patch)
tree5d61cde2fddb0477bde09e52b75b02c85a6dcfad /.github/spellcheck-settings.yml
parente07ae7d3b6248be8be842eca3e1e97595a17aa1a (diff)
Integrating spellcheck into CI (#1218)
* Adding spellcheck testing * words * updating version of spellcheck action
Diffstat (limited to '.github/spellcheck-settings.yml')
-rw-r--r--.github/spellcheck-settings.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/spellcheck-settings.yml b/.github/spellcheck-settings.yml
new file mode 100644
index 0000000..b8ca6cc
--- /dev/null
+++ b/.github/spellcheck-settings.yml
@@ -0,0 +1,29 @@
+matrix:
+- name: Markdown
+ expect_match: false
+ apsell:
+ lang: en
+ d: en_US
+ ignore-case: true
+ dictionary:
+ wordlists:
+ - .github/wordlist.txt
+ output: wordlist.dic
+ pipeline:
+ - pyspelling.filters.markdown:
+ markdown_extensions:
+ - markdown.extensions.extra:
+ - pyspelling.filters.html:
+ comments: false
+ attributes:
+ - alt
+ ignores:
+ - ':matches(code, pre)'
+ - code
+ - pre
+ - blockquote
+ - img
+ sources:
+ - 'README.md'
+ - 'FAQ.md'
+ - 'docs/**'