@cspell/dict-rust 1.0.22 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/cspell-ext.json CHANGED
@@ -3,11 +3,12 @@
3
3
  "id": "rust",
4
4
  "name": "Rust Dictionary",
5
5
  "description": "Rust Keyword Dictionary",
6
+ "readonly": true,
6
7
  // List of dictionary files to add to the global list of dictionaries
7
8
  "dictionaryDefinitions": [
8
9
  {
9
10
  "name": "rust",
10
- "file": "./rust.txt.gz",
11
+ "path": "./rust.txt.gz",
11
12
  "description": "Rust Keyword Dictionary"
12
13
  }
13
14
  ],
@@ -23,7 +24,7 @@
23
24
  "languageId": "rust",
24
25
  // Language local. i.e. en-US, de-AT, or ru. * will match all locals.
25
26
  // Multiple locals can be specified like: "en, en-US" to match both English and English US.
26
- "local": "*",
27
+ "locale": "*",
27
28
  // By default the whole text of a file is included for spell checking
28
29
  // Adding patterns to the "includeRegExpList" to only include matching patterns
29
30
  "includeRegExpList": [],
@@ -35,7 +36,7 @@
35
36
  "patterns": [],
36
37
  // List of dictionaries to enable by name in `dictionaryDefinitions`
37
38
  "dictionaries": ["rust"],
38
- // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "local" match.
39
+ // Dictionary definitions can also be supplied here. They are only used iff "languageId" and "locale" match.
39
40
  "dictionaryDefinitions": []
40
41
  }
41
42
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cspell/dict-rust",
3
- "version": "1.0.22",
3
+ "version": "2.0.1",
4
4
  "description": "Rust dictionary for cspell.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -13,7 +13,7 @@
13
13
  "scripts": {
14
14
  "build": "cspell-tools compile \"rust.txt\" -o .",
15
15
  "test": "head -n 1000 \"rust.txt\" | cspell -v -c ./cspell-ext.json --local=* --languageId=rust stdin",
16
- "prepublishOnly": "yarn test",
16
+ "prepublishOnly": "echo pre-publish",
17
17
  "prepare": "yarn run build"
18
18
  },
19
19
  "repository": {
@@ -32,9 +32,10 @@
32
32
  "bugs": {
33
33
  "url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
34
34
  },
35
- "homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/master/dictionaries/rust#readme",
35
+ "homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/rust#readme",
36
36
  "files": [
37
37
  "rust.txt.gz",
38
38
  "cspell-ext.json"
39
- ]
39
+ ],
40
+ "gitHead": "b4fd03bb833930b5a2272c780592862b9fb95036"
40
41
  }
package/rust.txt.gz CHANGED
Binary file
package/CHANGELOG.md DELETED
@@ -1,51 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [1.0.22](https://github.com/streetsidesoftware/cspell-dicts/compare/@cspell/dict-rust@1.0.21...@cspell/dict-rust@1.0.22) (2020-12-24)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * Update softwareTerms.txt ([#308](https://github.com/streetsidesoftware/cspell-dicts/issues/308)) ([49b5ce4](https://github.com/streetsidesoftware/cspell-dicts/commit/49b5ce4a2436f3c99969d6425128d55f84c8a7fc)), closes [#194](https://github.com/streetsidesoftware/cspell-dicts/issues/194)
12
-
13
-
14
-
15
-
16
-
17
- ## [1.0.21](https://github.com/streetsidesoftware/cspell-dicts/compare/@cspell/dict-rust@1.0.20...@cspell/dict-rust@1.0.21) (2020-11-28)
18
-
19
- **Note:** Version bump only for package @cspell/dict-rust
20
-
21
-
22
-
23
-
24
-
25
- ## 1.0.20 (2020-11-27)
26
-
27
- **Note:** Version bump only for package @cspell/dict-rust
28
-
29
-
30
-
31
-
32
-
33
- ## [1.0.19](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-rust@1.0.18...cspell-dict-rust@1.0.19) (2020-11-21)
34
-
35
- **Note:** Version bump only for package cspell-dict-rust
36
-
37
- ## [1.0.18](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-rust@1.0.17...cspell-dict-rust@1.0.18) (2020-11-08)
38
-
39
- ### Bug Fixes
40
-
41
- - do not include Configstore if not necessary ([#270](https://github.com/streetsidesoftware/cspell-dicts/issues/270)) ([d8b625f](https://github.com/streetsidesoftware/cspell-dicts/commit/d8b625f2f42d5cc6c4a9390216ac1e5037886e44))
42
-
43
- ## [1.0.17](https://github.com/streetsidesoftware/cspell-dicts/compare/cspell-dict-rust@1.0.16...cspell-dict-rust@1.0.17) (2020-10-21)
44
-
45
- **Note:** Version bump only for package cspell-dict-rust
46
-
47
- # Change Log
48
-
49
- ## 1.0.0
50
-
51
- - Initial Release