Skip to content

Commit 4e8840f

Browse files
authored
Create spellcheck.yml (#132)
* Create spellcheck.yml * Create spellcheck-settings.yml * Create wordlist.txt * Update wordlist.txt * Update spellcheck.yml * Update spellcheck.yml * Update spellcheck.yml
1 parent 243cfba commit 4e8840f

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed

.github/spellcheck-settings.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
matrix:
2+
- name: Markdown
3+
expect_match: false
4+
apsell:
5+
lang: en
6+
d: en_US
7+
dictionary:
8+
wordlists:
9+
- .github/wordlist.txt
10+
output: wordlist.dic
11+
pipeline:
12+
- pyspelling.filters.markdown:
13+
markdown_extensions:
14+
- markdown.extensions.extra:
15+
- pyspelling.filters.html:
16+
comments: false
17+
attributes:
18+
- alt
19+
ignores:
20+
- ':matches(code, pre)'
21+
- code
22+
- pre
23+
- blockquote
24+
- img
25+
- table
26+
sources:
27+
- '*.md'
28+
- 'docs/*.md'

.github/wordlist.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
socio
2+
sexualized
3+
falkordb
4+
html
5+
https
6+
www
7+
faq
8+
JFalkorDB
9+
FalkorDB

.github/workflows/spellcheck.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Spellcheck
2+
on:
3+
push:
4+
branches: [master]
5+
pull_request:
6+
branches: [master]
7+
jobs:
8+
spellcheck:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: read
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Spellcheck
15+
uses: rojopolis/spellcheck-github-actions@0.50.0
16+
with:
17+
config_path: .github/spellcheck-settings.yml
18+
task_name: Markdown

0 commit comments

Comments
 (0)