cspell-dict-en_us
Advanced tools
Comparing version 1.2.37 to 1.3.0
@@ -6,2 +6,18 @@ # Change Log | ||
# [1.3.0](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-en_us@1.2.37...cspell-dict-en_us@1.3.0) (2020-12-24) | ||
### Bug Fixes | ||
* `[@cspell](https://github.com/cspell)` dict imports ([#303](https://github.com/streetsidesoftware/cspell-dicts/issues/303)) ([b6cd581](https://github.com/streetsidesoftware/cspell-dicts/commit/b6cd58114caa8752fba69522e6b740a4be74dd6e)) | ||
### Features | ||
* Have `cspell-dict-*` use dictionary from `@cspell/dict-*` ([#300](https://github.com/streetsidesoftware/cspell-dicts/issues/300)) ([403c08f](https://github.com/streetsidesoftware/cspell-dicts/commit/403c08fbd1d11a083f586e591b87ef9a47f71944)) | ||
## [1.2.37](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-en_us@1.2.36...cspell-dict-en_us@1.2.37) (2020-11-28) | ||
@@ -8,0 +24,0 @@ |
@@ -1,50 +0,3 @@ | ||
// cSpell Settings | ||
{ | ||
"id": "en-us", | ||
"name": "American English Dictionary", | ||
"description": "American English Dictionary", | ||
// List of dictionary files to add to the global list of dictionaries | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "en_us", | ||
"file": "./en_US.trie.gz", | ||
"repMap": [["'|`|’", "'"]], | ||
"description": "American English Dictionary" | ||
} | ||
], | ||
// Dictionaries to always be used. | ||
// Generally left empty | ||
"dictionaries": [], | ||
// Language Rules to apply to matching files. | ||
// Files are matched on `languageId` and `local` | ||
"languageSettings": [ | ||
{ | ||
// VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex | ||
// * will match against any file type. | ||
"languageId": "*", | ||
// Language local. i.e. en-US, de-AT, or ru. * will match all locals. | ||
// Multiple locals can be specified like: "en, en-US" to match both English and English US. | ||
"local": "en,en-US", | ||
// By default the whole text of a file is included for spell checking | ||
// Adding patterns to the "includeRegExpList" to only include matching patterns | ||
"includeRegExpList": [], | ||
// To exclude patterns, add them to "ignoreRegExpList" | ||
"ignoreRegExpList": [], | ||
// regex patterns than can be used with ignoreRegExpList or includeRegExpList | ||
// Example: "pattern": [{ "name": "mdash", "pattern": "—" }] | ||
// This could be included in "ignoreRegExpList": ["mdash"] | ||
"patterns": [ | ||
{ | ||
"name": "possessive_s", | ||
"pattern": "/'s\\b/gi" | ||
} | ||
], | ||
// List of dictionaries to enable by name in `dictionaryDefinitions` | ||
"dictionaries": ["en_us"], | ||
// Dictionary definitions can also be supplied here. They are only used iff "languageId" and "local" match. | ||
"dictionaryDefinitions": [], | ||
// Words to always be considered an error | ||
"flagWords": ["hte", "teh"] | ||
} | ||
] | ||
"import": ["@cspell/dict-en_us/cspell-ext.json"] | ||
} |
{ | ||
"name": "cspell-dict-en_us", | ||
"version": "1.2.37", | ||
"version": "1.3.0", | ||
"description": "English dictionary for cspell.", | ||
@@ -14,13 +14,4 @@ "bin": { | ||
"scripts": { | ||
"build": "yarn run compile", | ||
"checksum": "shasum -c checksum.txt", | ||
"compile": "cat source-files.txt | xargs cspell-tools compile-trie --merge en_US -o . && yarn run gen-checksum", | ||
"conditional-build": "yarn run --silent checksum || yarn run build", | ||
"test-dict": "hunspell-reader words -n 10000 \"src/hunspell/en_US.dic\" | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin", | ||
"test-text": "cspell -v -c ./cspell-ext.json --local=en --languageId=* \"tests/*.txt\"", | ||
"gen-checksum": "cat source-files.txt | xargs shasum en_US.trie.gz > checksum.txt", | ||
"test": "yarn run test-dict && yarn run test-text", | ||
"prepublishOnly": "yarn test", | ||
"cspell-link": "node link.js", | ||
"cspell-unlink": "node unlink.js" | ||
"test": "cspell -c cspell-ext.json *.md", | ||
"prepublishOnly": "yarn test" | ||
}, | ||
@@ -49,16 +40,10 @@ "repository": { | ||
"dependencies": { | ||
"@cspell/dict-en_us": "^1.2.38", | ||
"configstore": "^5.0.1" | ||
}, | ||
"files": [ | ||
"en_US.trie.gz", | ||
"cspell-ext.json", | ||
"src/hunspell/README_en_US-large.txt", | ||
"!scripts", | ||
"*.js", | ||
"*.d.ts" | ||
], | ||
"directories": { | ||
"test": "tests" | ||
}, | ||
"gitHead": "48d10290053a5c492372ed4221cdb83c835a3bcb" | ||
] | ||
} |
7356
2
10
60
+ Added@cspell/dict-en_us@^1.2.38
+ Added@cspell/dict-en_us@1.2.45(transitive)