From 26b3c7e9810f4c19fb5b52a4419a66acd55a5a6c Mon Sep 17 00:00:00 2001 From: julien-cpsn Date: Sun, 5 May 2024 23:23:51 +0200 Subject: [PATCH] Test spellchecker config --- .github/spellchecker_config.toml | 5 +++++ .github/workflows/spellchecker.yml | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .github/spellchecker_config.toml diff --git a/.github/spellchecker_config.toml b/.github/spellchecker_config.toml new file mode 100644 index 0000000..f6809cc --- /dev/null +++ b/.github/spellchecker_config.toml @@ -0,0 +1,5 @@ +[files] +extend-exclude = [ + "import_tests/*", + "base_collections/*", +] \ No newline at end of file diff --git a/.github/workflows/spellchecker.yml b/.github/workflows/spellchecker.yml index c7018cd..28a89e5 100644 --- a/.github/workflows/spellchecker.yml +++ b/.github/workflows/spellchecker.yml @@ -10,4 +10,6 @@ jobs: uses: actions/checkout@v4 - name: Check spelling of file.txt - uses: crate-ci/typos@master \ No newline at end of file + uses: crate-ci/typos@master + with: + config: ./.github/spellchecker_config.toml \ No newline at end of file