Skip to content

Commit 9453fb7

Browse files
authored
1 parent b43efb9 commit 9453fb7

File tree

35 files changed

+5489
-5444
lines changed

35 files changed

+5489
-5444
lines changed

.github/workflows/bearer.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ jobs:
1818

1919
- name: Bearer
2020
uses: bearer/bearer-action@v2
21+
with:
22+
skip-rule: "java_lang_information_leakage"

.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: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,10 @@ dmypy.json
129129
.pyre/
130130
.history
131131

132-
# VSCode
133-
.vscode/
132+
# Visual Studio code
133+
.vscode/*
134+
!.vscode/cspell.json
135+
*.code-workspace
134136
.history
135137

136138
# Output folder used by examples

.vscode/cspell.json

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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+
"accessibilities",
9+
"analysing",
10+
"Axxxx",
11+
"CCLA",
12+
"cfgp",
13+
"codehaus",
14+
"CODEOWNER",
15+
"configmanager",
16+
"configmgr",
17+
"configparser",
18+
"CONFIGPATH",
19+
"Dorg",
20+
"Dsenzing",
21+
"DYLD",
22+
"findsecbugs",
23+
"fpvs",
24+
"glassfish",
25+
"ICLA",
26+
"ipascalcase",
27+
"isort",
28+
"javax",
29+
"jdbc",
30+
"kwargs",
31+
"lukehinds",
32+
"Makio",
33+
"mypy",
34+
"mysenzproj",
35+
"optionxform",
36+
"pascalcase",
37+
"Pcheckstyle",
38+
"pushback",
39+
"pydevproject",
40+
"pylint",
41+
"pypa",
42+
"pytest",
43+
"RESOURCEPATH",
44+
"Retryable",
45+
"roslynator",
46+
"Rotorville",
47+
"schemaname",
48+
"Senzing",
49+
"senzingsdk",
50+
"setuptools",
51+
"shellcheck",
52+
"shuf",
53+
"signum",
54+
"spotbugs",
55+
"stackoverflow",
56+
"SUPPORTPATH",
57+
"szconfig",
58+
"szconfigmanager",
59+
"szcore",
60+
"szengineflags",
61+
"taskkill",
62+
"temurin",
63+
"terashuf",
64+
"tpascalcase",
65+
"truthset",
66+
"unresolve",
67+
"unresolving",
68+
"USERPROFILE",
69+
"venv",
70+
"watchlist",
71+
"WATCHLIST",
72+
"xerial",
73+
"Xlint",
74+
"xstream",
75+
"Yamanaka",
76+
"YESPURGESENZING"
77+
],
78+
"ignorePaths": [
79+
".git/**",
80+
".gitignore",
81+
".mypy_cache/**",
82+
"csharp/runner/**/bin/**",
83+
"csharp/runner/**/obj/**",
84+
"csharp/snippets/**/bin/**",
85+
"csharp/snippets/**/obj/**",
86+
"java/target/**",
87+
"resources/data/**"
88+
]
89+
}

.vscode/settings.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)