Skip to content

Commit

Permalink
Add typescript to dictionaries in cspell.json (#17978)
Browse files Browse the repository at this point in the history
Fixes #15248 
Add typescript to dictionaries in cspell.json
Tested by adding `instanceof` in any .md file and run `npx cspell --config .vscode/cspell.json`
```
npx cspell --config .vscode/cspell.json README.md 
1/1 .\README.md 495.98ms X
c:\Users\User\Desktop\test\azure-sdk-for-js\README.md:55:110 - Unknown word (MSRC)
c:\Users\User\Desktop\test\azure-sdk-for-js\README.md:55:325 - Unknown word (MSRC)
CSpell: Files checked: 1, Issues found: 2 in 1 files                    
```
  • Loading branch information
Kevan-Y authored Oct 8, 2021
1 parent b37a332 commit a2aebbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "0.1",
"language": "en",
"languageId": "typescript,javascript",
"dictionaries": ["powershell"],
"dictionaries": ["powershell", "typescript"],
"ignorePaths": [
"**/node_modules/**",
"**/recordings/**",
Expand Down

0 comments on commit a2aebbe

Please sign in to comment.