From ddb881b39613d25b95aebcaa74a51f37d38ed5ff Mon Sep 17 00:00:00 2001 From: Gerald Versluis Date: Thu, 9 Jan 2025 23:05:03 +0100 Subject: [PATCH] Move cSpell config to subfolder (clean up repo root) (#27031) * Move cSpell config to subfolder * Use existing automation folder --- .github/workflows/spellcheck.yml | 2 +- cSpell.json => eng/automation/cspell/cSpell.json | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename cSpell.json => eng/automation/cspell/cSpell.json (100%) diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index b8d072bbf061..061ec5f195ae 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -25,5 +25,5 @@ jobs: node-version: "18" - run: npm install -g cspell name: Install cSpell - - run: cspell --config ./cSpell.json "docs/**/*.md" --no-progress + - run: cspell --config ./eng/automation/cspell/cSpell.json "docs/**/*.md" --no-progress name: Run cSpell diff --git a/cSpell.json b/eng/automation/cspell/cSpell.json similarity index 100% rename from cSpell.json rename to eng/automation/cspell/cSpell.json