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