Skip to content

Commit 4e4a433

Browse files
committed
<type/issue_no>: <subject>
Content of commit Fixes: #
1 parent 3fe4a46 commit 4e4a433

File tree

3 files changed

+28
-1
lines changed

3 files changed

+28
-1
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ jobs:
1515
with:
1616
# Only check markdown files
1717
files: '**/*.md'
18-
incremental_files_only: false
18+
incremental_files_only: false # TODO revert once working
19+
config: "cspell.json"

cspell.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json",
3+
"version": "0.2",
4+
"language": "en",
5+
"dictionaryDefinitions": [
6+
{
7+
"name": "kata-terms",
8+
"path": "./kata-dictionary.txt",
9+
"addWords": true
10+
}
11+
],
12+
"dictionaries": [
13+
"en_US",
14+
"go",
15+
"rust",
16+
"kata-terms"
17+
],
18+
"ignorePaths": [
19+
".git/**",
20+
"cspell.json",
21+
"kata-dictionary.txt"
22+
],
23+
"useGitignore": true
24+
}

kata-dictionary.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
kata
2+
katacontainers

0 commit comments

Comments
 (0)