From 1170d96a756aace77886dd05308045c43c649e40 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Sat, 30 Sep 2023 10:17:00 +0200 Subject: [PATCH 1/2] fix(tool): Do not match dot globs for cspell Signed-off-by: jld3103 --- cspell.json | 1 + 1 file changed, 1 insertion(+) diff --git a/cspell.json b/cspell.json index 37d4ce40..7dbd722e 100644 --- a/cspell.json +++ b/cspell.json @@ -2,6 +2,7 @@ "version": "0.2", "language": "en", "useGitignore": true, + "enableGlobDot": false, "words": [ "OpenAPI" ], From e38e8634ba2d1a9af3bd5f1a1e36159bc49e91c4 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Sat, 30 Sep 2023 10:17:33 +0200 Subject: [PATCH 2/2] fix(ci): Always spellcheck everything Signed-off-by: jld3103 --- .github/workflows/spellcheck.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index 0a3be36c..aa5c98b9 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -8,3 +8,5 @@ jobs: steps: - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 - uses: streetsidesoftware/cspell-action@22e32eb3d70acf30e3fc09bd46edc1d30fb2d6db # v3 + with: + incremental_files_only: false