Skip to content

Commit 06e180e

Browse files
authored
chore: add spellcheck to CI (#314)
* chore: add spellcheck to CI * chore: add spellcheck.yml config * chore: fix typos add wordlist * chore: more words * chore: more words * chore: more words * chore: more words * chore: add instruction in CONTRIBUTING.md * chore: more words * chore: improve wording of CONTRIBUTING file
1 parent e4c067d commit 06e180e

28 files changed

+900
-252
lines changed

.github/workflows/spellcheck.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Spellcheck
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
8+
jobs:
9+
build:
10+
name: Spellcheck
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- uses: rojopolis/[email protected]
15+
name: Spellcheck

.spellcheck.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
matrix:
2+
- name: Markdown
3+
aspell:
4+
lang: en
5+
dictionary:
6+
wordlists:
7+
- .wordlist.txt
8+
encoding: utf-8
9+
pipeline:
10+
- pyspelling.filters.markdown:
11+
- pyspelling.filters.html:
12+
comments: false
13+
ignores:
14+
- code
15+
- pre
16+
sources:
17+
- '**/*.md'
18+
default_encoding: utf-8

0 commit comments

Comments
 (0)