Skip to content

Commit cd4d31f

Browse files
authored
Add spellcheck for modified files (Azure#18496)
* Add spell checking for changed files * Add exceptions for spelling errors found in this PR * Add tenvparallel to spelling exceptions
1 parent 9fba82f commit cd4d31f

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.vscode/cspell.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"version": "0.1",
3+
"language": "en",
4+
"languageId": "python",
5+
"dictionaries": [
6+
"powershell"
7+
],
8+
"ignorePaths": [
9+
".vscode/cspell.json"
10+
],
11+
"words": ["azsdk", "conda", "tenvparallel"],
12+
"allowCompoundWords": false
13+
}

eng/pipelines/templates/jobs/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ jobs:
8686
vmImage: MMSUbuntu18.04
8787

8888
steps:
89+
- template: /eng/common/pipelines/templates/steps/check-spelling.yml
90+
8991
- template: /eng/common/pipelines/templates/steps/verify-links.yml
9092
parameters:
9193
${{ if eq(variables['Build.Reason'], 'PullRequest') }}:

0 commit comments

Comments
 (0)