-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set new baseline for cspell (#32171)
* Set cspell baseilne * Update documentation/cspell.yaml to remove compound words * pwsh
- Loading branch information
1 parent
fb677c5
commit dee7146
Showing
246 changed files
with
6,054 additions
and
1,897 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: '0.2' | ||
import: | ||
- ../cspell.yaml | ||
words: | ||
- azsdk | ||
- pwsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: SpellCheck - All | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- RPSaaSMaster | ||
|
||
schedule: | ||
# Run every day at 12:06 UTC | ||
- cron: "6 12 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
spellcheck: | ||
name: SpellCheck | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: Run spelling check | ||
run: | | ||
./eng/common/spelling/Invoke-Cspell.ps1 ` | ||
-ScanGlobs 'specification/**' ` | ||
-CSpellConfigPath './cspell.json' | ||
shell: pwsh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.