From a2aebbe09772a0245d097ff07d107901035a4ea5 Mon Sep 17 00:00:00 2001 From: Kevan Yang <58233223+Kevan-Y@users.noreply.github.com> Date: Fri, 8 Oct 2021 10:39:12 -0400 Subject: [PATCH] Add typescript to dictionaries in cspell.json (#17978) 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 ``` --- .vscode/cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/cspell.json b/.vscode/cspell.json index 1ab06ae27845..f3f73ea4e74a 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -2,7 +2,7 @@ "version": "0.1", "language": "en", "languageId": "typescript,javascript", - "dictionaries": ["powershell"], + "dictionaries": ["powershell", "typescript"], "ignorePaths": [ "**/node_modules/**", "**/recordings/**",