Skip to content

senzing-factory/build-resources#185 add spellcheck and #38 disable java bearer rule #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/bearer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ jobs:

- name: Bearer
uses: bearer/bearer-action@v2
with:
skip-rule: "java_lang_information_leakage"
19 changes: 19 additions & 0 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: spellcheck

on:
pull_request:
branches: [main]

permissions:
contents: read

jobs:
spellcheck:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: streetsidesoftware/cspell-action@v7
with:
config: .vscode/cspell.json
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,10 @@ dmypy.json
.pyre/
.history

# VSCode
.vscode/
# Visual Studio code
.vscode/*
!.vscode/cspell.json
*.code-workspace
.history

# Output folder used by examples
Expand Down
89 changes: 89 additions & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
{
// Version of the setting file. Always 0.2
"version": "0.2",
// language - current active spelling language
"language": "en",
// words - list of words to be always considered correct
"words": [
"accessibilities",
"analysing",
"Axxxx",
"CCLA",
"cfgp",
"codehaus",
"CODEOWNER",
"configmanager",
"configmgr",
"configparser",
"CONFIGPATH",
"Dorg",
"Dsenzing",
"DYLD",
"findsecbugs",
"fpvs",
"glassfish",
"ICLA",
"ipascalcase",
"isort",
"javax",
"jdbc",
"kwargs",
"lukehinds",
"Makio",
"mypy",
"mysenzproj",
"optionxform",
"pascalcase",
"Pcheckstyle",
"pushback",
"pydevproject",
"pylint",
"pypa",
"pytest",
"RESOURCEPATH",
"Retryable",
"roslynator",
"Rotorville",
"schemaname",
"Senzing",
"senzingsdk",
"setuptools",
"shellcheck",
"shuf",
"signum",
"spotbugs",
"stackoverflow",
"SUPPORTPATH",
"szconfig",
"szconfigmanager",
"szcore",
"szengineflags",
"taskkill",
"temurin",
"terashuf",
"tpascalcase",
"truthset",
"unresolve",
"unresolving",
"USERPROFILE",
"venv",
"watchlist",
"WATCHLIST",
"xerial",
"Xlint",
"xstream",
"Yamanaka",
"YESPURGESENZING"
],
"ignorePaths": [
".git/**",
".gitignore",
".mypy_cache/**",
"csharp/runner/**/bin/**",
"csharp/runner/**/obj/**",
"csharp/snippets/**/bin/**",
"csharp/snippets/**/obj/**",
"java/target/**",
"resources/data/**"
]
}
32 changes: 0 additions & 32 deletions .vscode/settings.json

This file was deleted.

Loading
Loading