@cspell/dict-en-gb-legacy 1.0.7 → 1.0.9
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/README.md +111 -11
- package/dict/en_GB-legacy.trie.gz +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,33 +5,133 @@ British English Legacy dictionary for cspell.
|
|
|
5
5
|
This dictionary includes words that had been included in older versions of the en_GB dictionary.
|
|
6
6
|
They have been moved here to make the en_GB dictionary easier to maintain.
|
|
7
7
|
|
|
8
|
+
<!--- @@inject: ../../static/requirements.md --->
|
|
9
|
+
|
|
8
10
|
## Requirements
|
|
9
11
|
|
|
10
12
|
| Tool | Version |
|
|
11
13
|
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
12
|
-
| [cspell](https://github.com/streetsidesoftware/cspell) | `>=
|
|
13
|
-
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>=
|
|
14
|
+
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 8` |
|
|
15
|
+
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 4` |
|
|
16
|
+
|
|
17
|
+
<!--- @@inject-end: ../../static/requirements.md --->
|
|
14
18
|
|
|
15
|
-
|
|
19
|
+
<!--- @@inject: ./static/install.md --->
|
|
16
20
|
|
|
17
|
-
|
|
21
|
+
## Local Installation
|
|
18
22
|
|
|
19
23
|
```sh
|
|
20
|
-
npm install @cspell/dict-en-gb-legacy
|
|
24
|
+
npm install -D @cspell/dict-en-gb-legacy
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Configuration
|
|
28
|
+
|
|
29
|
+
<details>
|
|
30
|
+
<summary>VSCode Settings</summary>
|
|
31
|
+
|
|
32
|
+
Add the following to your VSCode settings:
|
|
33
|
+
|
|
34
|
+
**`.vscode/settings.json`**
|
|
35
|
+
|
|
36
|
+
```jsonc
|
|
37
|
+
{
|
|
38
|
+
"cSpell.import": ["@cspell/dict-en-gb-legacy/cspell-ext.json"],
|
|
39
|
+
"cSpell.language": "en-GB",
|
|
40
|
+
}
|
|
21
41
|
```
|
|
22
42
|
|
|
23
|
-
|
|
43
|
+
</details>
|
|
44
|
+
|
|
45
|
+
<details>
|
|
46
|
+
<summary>CSpell Settings `cspell.json`</summary>
|
|
24
47
|
|
|
25
|
-
|
|
48
|
+
**`cspell.json`**
|
|
26
49
|
|
|
27
|
-
```
|
|
50
|
+
```jsonc
|
|
28
51
|
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
// …
|
|
52
|
+
"import": ["@cspell/dict-en-gb-legacy/cspell-ext.json"],
|
|
53
|
+
"language": "en-GB",
|
|
32
54
|
}
|
|
33
55
|
```
|
|
34
56
|
|
|
57
|
+
</details>
|
|
58
|
+
|
|
59
|
+
<details>
|
|
60
|
+
<summary>CSpell Settings `cspell.config.yaml`</summary>
|
|
61
|
+
|
|
62
|
+
**`cspell.config.yaml`**
|
|
63
|
+
|
|
64
|
+
```yaml
|
|
65
|
+
import:
|
|
66
|
+
- '@cspell/dict-en-gb-legacy/cspell-ext.json'
|
|
67
|
+
language: en-GB
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
</details>
|
|
71
|
+
|
|
72
|
+
## CDN Configuration
|
|
73
|
+
|
|
74
|
+
<details>
|
|
75
|
+
<summary>VSCode Settings</summary>
|
|
76
|
+
|
|
77
|
+
Add the following to your VSCode settings:
|
|
78
|
+
|
|
79
|
+
**`.vscode/settings.json`**
|
|
80
|
+
|
|
81
|
+
```jsonc
|
|
82
|
+
{
|
|
83
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy@latest/cspell-ext.json/cspell-ext.json"],
|
|
84
|
+
"cSpell.language": "en-GB",
|
|
85
|
+
}
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
</details>
|
|
89
|
+
|
|
90
|
+
<details>
|
|
91
|
+
<summary>CSpell Settings `cspell.json`</summary>
|
|
92
|
+
|
|
93
|
+
**`cspell.json`**
|
|
94
|
+
|
|
95
|
+
```jsonc
|
|
96
|
+
{
|
|
97
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy@latest/cspell-ext.json/cspell-ext.json"],
|
|
98
|
+
"language": "en-GB",
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
</details>
|
|
103
|
+
|
|
104
|
+
<details>
|
|
105
|
+
<summary>CSpell Settings `cspell.config.yaml`</summary>
|
|
106
|
+
|
|
107
|
+
**`cspell.config.yaml`**
|
|
108
|
+
|
|
109
|
+
```yaml
|
|
110
|
+
import:
|
|
111
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy@latest/cspell-ext.json/cspell-ext.json
|
|
112
|
+
language: en-GB
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
</details>
|
|
116
|
+
|
|
117
|
+
<!--- @@inject-end: ./static/install.md --->
|
|
118
|
+
|
|
119
|
+
<!--- @@inject: ../../static/contributing.md --->
|
|
120
|
+
|
|
121
|
+
## Contributing
|
|
122
|
+
|
|
123
|
+
Please help correct any mistakes in the dictionaries.
|
|
124
|
+
|
|
125
|
+
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
|
|
126
|
+
|
|
127
|
+
Special thanks to all of our amazing contributors!
|
|
128
|
+
|
|
129
|
+
### Dictionary Development
|
|
130
|
+
|
|
131
|
+
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
132
|
+
|
|
133
|
+
<!--- @@inject-end: ../../static/contributing.md --->
|
|
134
|
+
|
|
35
135
|
## License
|
|
36
136
|
|
|
37
137
|
MIT
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-en-gb-legacy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "British English Legacy dictionary for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"@cspell/aoo-mozilla-en-dict": "workspace:^",
|
|
49
49
|
"@cspell/dict-en-shared": "workspace:^"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "30c5c53b8e28152fc1d8a6cf0c872b068a64221a"
|
|
52
52
|
}
|