Skip to content

Commit 17f60bc

Browse files
committed
1 parent c5c435e commit 17f60bc

File tree

4 files changed

+85
-2
lines changed

4 files changed

+85
-2
lines changed

.github/workflows/spellcheck.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: spellcheck
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
spellcheck:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: streetsidesoftware/cspell-action@v7
18+
with:
19+
config: .vscode/cspell.json

.vscode/cspell.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
// Version of the setting file. Always 0.2
3+
"version": "0.2",
4+
// language - current active spelling language
5+
"language": "en",
6+
// words - list of words to be always considered correct
7+
"words": [
8+
"CCLA",
9+
"CODEOWNER",
10+
"CONFIGPATH",
11+
"ICLA",
12+
"loadx",
13+
"myhost",
14+
"mysenzproj",
15+
"RESOURCEPATH",
16+
"Senzing",
17+
"SUPPORTPATH",
18+
"schemaname",
19+
"configparser",
20+
"cfgp",
21+
"optionxform",
22+
"shuf",
23+
"terashuf",
24+
"unresolve",
25+
"Rotorville",
26+
"redoer",
27+
"Retryable",
28+
"pylint",
29+
"stackoverflow",
30+
"pydevproject",
31+
"analysing",
32+
"shellcheck",
33+
"fstring",
34+
"simplifiable",
35+
"senzingapi",
36+
"ipython",
37+
"virtualenv",
38+
"venv",
39+
"rootfs",
40+
"PYTHONPATH",
41+
"PYTHONUNBUFFERED",
42+
"toplevel",
43+
"alnum",
44+
"watchlist",
45+
"Addx",
46+
"Truthset",
47+
"srccode",
48+
"Dlalas",
49+
"MDMPER",
50+
"Rotchester",
51+
"Makio",
52+
"Yamanaka",
53+
"AUNA",
54+
"Xlas",
55+
"HAUPTMAN"
56+
],
57+
"ignorePaths": [
58+
".git/**",
59+
".gitignore",
60+
"Resources/License/**",
61+
"Resources/Data/**",
62+
"Resources/Configs/**"
63+
]
64+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ When used with a container, the JSON configuration is relative to the paths with
137137

138138
✏️You only need to modify the `CONNECTION` string to point to your Senzing database.
139139

140-
### Usage for Dccker usage
140+
### Usage for Docker usage
141141

142142
1. Clone this repository
143143
1. Export the engine configuration environment variable

rootfs/app/healthcheck.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ NOT_OK=1
77

88
# Tests.
99

10-
echo "Doing healthtest."
10+
echo "Doing health test."
1111

1212
exit ${OK}

0 commit comments

Comments
 (0)