From 4372d00ea926826b7edec218ce2f7a906bedb8b7 Mon Sep 17 00:00:00 2001 From: Ian Manske Date: Sat, 24 Feb 2024 20:29:57 +0000 Subject: [PATCH] Move `typos` config to repo root (#11949) # Description Moves the `typos` config to the repository root directory. This allows one to run `typos` locally and have the config used automatically. Currently, one has to instead run `typos -c .github/.typos.toml`. --- .github/workflows/typos.yml | 2 -- .github/.typos.toml => typos.toml | 0 2 files changed, 2 deletions(-) rename .github/.typos.toml => typos.toml (100%) diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml index 39aec3bc6b..96035c8edf 100644 --- a/.github/workflows/typos.yml +++ b/.github/workflows/typos.yml @@ -11,5 +11,3 @@ jobs: - name: Check spelling uses: crate-ci/typos@v1.18.2 - with: - config: ./.github/.typos.toml diff --git a/.github/.typos.toml b/typos.toml similarity index 100% rename from .github/.typos.toml rename to typos.toml