From 8193c4494494bd8f89dec43f2ceb729aeb669095 Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Mon, 3 May 2021 15:47:45 -0700 Subject: [PATCH 1/3] Add spell checking for changed files --- .vscode/cspell.json | 13 +++++++++++++ eng/pipelines/templates/jobs/ci.yml | 2 ++ 2 files changed, 15 insertions(+) create mode 100644 .vscode/cspell.json diff --git a/.vscode/cspell.json b/.vscode/cspell.json new file mode 100644 index 000000000000..7548de14963f --- /dev/null +++ b/.vscode/cspell.json @@ -0,0 +1,13 @@ +{ + "version": "0.1", + "language": "en", + "languageId": "python", + "dictionaries": [ + "powershell" + ], + "ignorePaths": [ + + ], + "words": [], + "allowCompoundWords": false +} diff --git a/eng/pipelines/templates/jobs/ci.yml b/eng/pipelines/templates/jobs/ci.yml index 3bb4d7ede674..04042ad43e4c 100644 --- a/eng/pipelines/templates/jobs/ci.yml +++ b/eng/pipelines/templates/jobs/ci.yml @@ -86,6 +86,8 @@ jobs: vmImage: MMSUbuntu18.04 steps: + - template: /eng/common/pipelines/templates/steps/check-spelling.yml + - template: /eng/common/pipelines/templates/steps/verify-links.yml parameters: ${{ if eq(variables['Build.Reason'], 'PullRequest') }}: From c152e08a2f43fc5dcffe4675953762e9f937743e Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Tue, 4 May 2021 13:44:04 -0700 Subject: [PATCH 2/3] Add exceptions for spelling errors found in this PR --- .vscode/cspell.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index 7548de14963f..cbc9bbc6b731 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -6,8 +6,8 @@ "powershell" ], "ignorePaths": [ - + ".vscode/cspell.json" ], - "words": [], + "words": ["azsdk", "conda"], "allowCompoundWords": false } From 0a04fa5756bc7fd0cfa45341c828e94fe9f68313 Mon Sep 17 00:00:00 2001 From: Daniel Jurek Date: Fri, 7 May 2021 12:01:29 -0700 Subject: [PATCH 3/3] Add tenvparallel to spelling exceptions --- .vscode/cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index cbc9bbc6b731..2bb6536cba10 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -8,6 +8,6 @@ "ignorePaths": [ ".vscode/cspell.json" ], - "words": ["azsdk", "conda"], + "words": ["azsdk", "conda", "tenvparallel"], "allowCompoundWords": false }