From 79d4974a66f102af96b6fd15599c39fee358c291 Mon Sep 17 00:00:00 2001 From: Anton Hughes Date: Mon, 13 Jan 2025 11:08:29 +1300 Subject: [PATCH] Add spellcheck configuration and custom wordlist for Markdown files --- .github/spellcheck.yml | 9 +++++++++ .github/wordlist.txt | 20 ++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/wordlist.txt diff --git a/.github/spellcheck.yml b/.github/spellcheck.yml index 79cd3c3..0e259cc 100644 --- a/.github/spellcheck.yml +++ b/.github/spellcheck.yml @@ -2,15 +2,24 @@ matrix: - name: Markdown aspell: lang: en + dictionary: + wordlists: + - .wordlist.txt + encoding: utf-8 pipeline: - pyspelling.filters.markdown: markdown_extensions: - pymdownx.superfences + ignores: + - code + - pre + - link - pyspelling.filters.html: comments: false ignores: - code - pre + - a sources: - "**/*.md" default_encoding: utf-8 \ No newline at end of file diff --git a/.github/wordlist.txt b/.github/wordlist.txt new file mode 100644 index 0000000..aabea5d --- /dev/null +++ b/.github/wordlist.txt @@ -0,0 +1,20 @@ +CLI +Ethereum +Exercism +github +Grafana +HTTPS +localhost +linter +MacOS +mdBook +PRs +repo + +sigmaprime +sigp +SSV +Testnet +testnet +TODOs +Validator \ No newline at end of file