@cspell/dict-typescript
Advanced tools
Comparing version 1.0.17 to 1.0.18
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.0.18](https://github.com/streetsidesoftware/cspell-dicts/compare/@cspell/dict-typescript@1.0.17...@cspell/dict-typescript@1.0.18) (2021-05-25) | ||
### Bug Fixes | ||
* [#421](https://github.com/streetsidesoftware/cspell-dicts/issues/421) ([#428](https://github.com/streetsidesoftware/cspell-dicts/issues/428)) ([8ed0b38](https://github.com/streetsidesoftware/cspell-dicts/commit/8ed0b38c1c884a9b3e8ea0d1761c6a96f11a19aa)) | ||
## [1.0.17](https://github.com/streetsidesoftware/cspell-dicts/compare/@cspell/dict-typescript@1.0.16...@cspell/dict-typescript@1.0.17) (2021-04-05) | ||
@@ -8,0 +19,0 @@ |
@@ -17,2 +17,15 @@ // cSpell Settings | ||
"dictionaries": [], | ||
// Patterns | ||
"patterns": [ | ||
{ | ||
"name": "js-hex-escape", | ||
"pattern": "/\\\\x[a-f0-9]{2}/gi", | ||
"description": "Javascript String Hexadecimal Escape sequence." | ||
}, | ||
{ | ||
"name": "js-unicode-escape", | ||
"pattern": "/\\\\u[a-f0-9]{4}/gi", | ||
"description": "Javascript String Unicode Escape sequence." | ||
} | ||
], | ||
// Language Rules to apply to matching files. | ||
@@ -24,3 +37,3 @@ // Files are matched on `languageId` and `local` | ||
// * will match against any file type. | ||
"languageId": "typescript,javascript", | ||
"languageId": "typescript,javascript,typescriptreact,javascriptreact", | ||
// Language local. i.e. en-US, de-AT, or ru. * will match all locals. | ||
@@ -31,3 +44,3 @@ // Multiple locals can be specified like: "en, en-US" to match both English and English US. | ||
// Adding patterns to the "includeRegExpList" to only include matching patterns | ||
"includeRegExpList": [], | ||
"includeRegExpList": ["js-hex-escape", "js-unicode-escape"], | ||
// To exclude patterns, add them to "ignoreRegExpList" | ||
@@ -34,0 +47,0 @@ "ignoreRegExpList": [], |
{ | ||
"name": "@cspell/dict-typescript", | ||
"version": "1.0.17", | ||
"version": "1.0.18", | ||
"description": "TypeScript and JavaScript dictionary for cspell.", | ||
@@ -40,3 +40,3 @@ "publishConfig": { | ||
], | ||
"gitHead": "e4839353dcc4ef1b12c4c8dd2289aa4891e6cb54" | ||
"gitHead": "a2e9472aaa96e1836f5f0ccea232249685c80ed9" | ||
} |
19196
55