cspell-dict-golang
Advanced tools
Comparing version 1.1.23 to 1.2.0
@@ -6,2 +6,18 @@ # Change Log | ||
# [1.2.0](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-golang@1.1.23...cspell-dict-golang@1.2.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.1.23](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-golang@1.1.22...cspell-dict-golang@1.1.23) (2020-11-28) | ||
@@ -59,1 +75,3 @@ | ||
- Initial Release | ||
<!--- cspell:ignore Alek --> |
@@ -1,44 +0,3 @@ | ||
// cSpell Settings | ||
{ | ||
"id": "golang", | ||
"name": "Go Language", | ||
"description": "Go Language Dictionary", | ||
// List of dictionary files to add to the global list of dictionaries | ||
"dictionaryDefinitions": [ | ||
{ | ||
"name": "golang", | ||
"file": "./go.txt.gz", | ||
"description": "Go Language 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": "go", | ||
// 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": "*", | ||
// It is common in Go to glue words together. | ||
"allowCompoundWords": true, | ||
// 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": [], | ||
// List of dictionaries to enable by name in `dictionaryDefinitions` | ||
"dictionaries": ["golang"], | ||
// Dictionary definitions can also be supplied here. They are only used iff "languageId" and "local" match. | ||
"dictionaryDefinitions": [] | ||
} | ||
] | ||
"import": ["@cspell/dict-golang/cspell-ext.json"] | ||
} |
{ | ||
"name": "cspell-dict-golang", | ||
"version": "1.1.23", | ||
"version": "1.2.0", | ||
"description": "Go Language dictionary for cspell.", | ||
@@ -14,8 +14,4 @@ "bin": { | ||
"scripts": { | ||
"build": "cspell-tools compile \"go.txt\" -o .", | ||
"test": "head -n 100 \"go.txt\" | cspell -v -c ./cspell-ext.json --local=* --languageId=go stdin", | ||
"cspell-link": "node link.js", | ||
"cspell-unlink": "node unlink.js", | ||
"prepublishOnly": "yarn test", | ||
"prepare": "yarn run build" | ||
"test": "cspell -v -c ./cspell-ext.json *.md", | ||
"prepublishOnly": "yarn test" | ||
}, | ||
@@ -42,11 +38,10 @@ "repository": { | ||
"dependencies": { | ||
"@cspell/dict-golang": "^1.1.24", | ||
"configstore": "^5.0.1" | ||
}, | ||
"files": [ | ||
"go.txt.gz", | ||
"cspell-ext.json", | ||
"*.js", | ||
"*.d.ts" | ||
], | ||
"gitHead": "48d10290053a5c492372ed4221cdb83c835a3bcb" | ||
] | ||
} |
@@ -55,1 +55,3 @@ # Cspell Go Language Dictionary | ||
> Some packages may have other licenses included. | ||
<!--- cspell:ignore Alek Alexey Palazhchenko --> |
57
7074
2
10
60
+ Added@cspell/dict-golang@^1.1.24
+ Added@cspell/dict-golang@1.1.24(transitive)