Skip to content

Commit 4710e68

Browse files
committed
1 parent a3f4a04 commit 4710e68

File tree

4 files changed

+240
-138
lines changed

4 files changed

+240
-138
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

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
.DS_Store
2+
3+
# Visual Studio code
4+
.vscode/*
5+
!.vscode/cspell.json
6+
*.code-workspace
27
.history
8+

.vscode/cspell.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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+
"analysing",
9+
"CCLA",
10+
"CHENGXI",
11+
"CODEOWNER",
12+
"COSCO",
13+
"Daewoo",
14+
"dateutil",
15+
"HUANGPU",
16+
"ICLA",
17+
"Imabari",
18+
"Kaiji",
19+
"MARU",
20+
"mcorpm",
21+
"Mipo",
22+
"mmsi",
23+
"Moller",
24+
"Moller",
25+
"mypy",
26+
"Newbuilding",
27+
"NINGBO",
28+
"nomino",
29+
"pylint",
30+
"SANYO",
31+
"Senzing",
32+
"shellcheck",
33+
"stackoverflow",
34+
"subrecord",
35+
"Sulzer",
36+
"tpcmi",
37+
"WAIGAOQIAO",
38+
"Wartsila",
39+
"WENCHONG",
40+
"XINLE"
41+
],
42+
"ignorePaths": [
43+
".git/**",
44+
".mypy_cache/**"
45+
]
46+
}

0 commit comments

Comments
 (0)