From 5d9b738fafc64c1babdfd9d1923c8bd147407cfd Mon Sep 17 00:00:00 2001 From: Jim Klimov Date: Tue, 4 Jun 2024 09:00:17 +0200 Subject: [PATCH] .github/workflows/spelling.yml: add extra_dictionaries[] suggested by recent tool complaints Signed-off-by: Jim Klimov --- .github/workflows/spelling.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index aeb3114c..1a70e5f8 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -13,6 +13,13 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 + extra_dictionaries: + cspell:software-terms/dict/softwareTerms.txt + cspell:filetypes/filetypes.txt + # Languages below are not used in this project, but common terms are + cspell:php/dict/php.txt + cspell:node/dict/node.txt + cspell:python/src/python/python-lib.txt - uses: check-spelling/check-spelling@v0.0.22 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}