@cspell/dict-en-gb-legacy 1.0.9 → 1.0.11
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 +21 -7
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -43,7 +43,7 @@ Add the following to your VSCode settings:
|
|
|
43
43
|
</details>
|
|
44
44
|
|
|
45
45
|
<details>
|
|
46
|
-
<summary>CSpell Settings
|
|
46
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
47
47
|
|
|
48
48
|
**`cspell.json`**
|
|
49
49
|
|
|
@@ -57,7 +57,7 @@ Add the following to your VSCode settings:
|
|
|
57
57
|
</details>
|
|
58
58
|
|
|
59
59
|
<details>
|
|
60
|
-
<summary>CSpell Settings
|
|
60
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
61
61
|
|
|
62
62
|
**`cspell.config.yaml`**
|
|
63
63
|
|
|
@@ -69,6 +69,8 @@ language: en-GB
|
|
|
69
69
|
|
|
70
70
|
</details>
|
|
71
71
|
|
|
72
|
+
## Local Installation using CDN
|
|
73
|
+
|
|
72
74
|
## CDN Configuration
|
|
73
75
|
|
|
74
76
|
<details>
|
|
@@ -80,7 +82,7 @@ Add the following to your VSCode settings:
|
|
|
80
82
|
|
|
81
83
|
```jsonc
|
|
82
84
|
{
|
|
83
|
-
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy
|
|
85
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy/cspell-ext.json"],
|
|
84
86
|
"cSpell.language": "en-GB",
|
|
85
87
|
}
|
|
86
88
|
```
|
|
@@ -88,13 +90,13 @@ Add the following to your VSCode settings:
|
|
|
88
90
|
</details>
|
|
89
91
|
|
|
90
92
|
<details>
|
|
91
|
-
<summary>CSpell Settings
|
|
93
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
92
94
|
|
|
93
95
|
**`cspell.json`**
|
|
94
96
|
|
|
95
97
|
```jsonc
|
|
96
98
|
{
|
|
97
|
-
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy
|
|
99
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy/cspell-ext.json"],
|
|
98
100
|
"language": "en-GB",
|
|
99
101
|
}
|
|
100
102
|
```
|
|
@@ -102,18 +104,30 @@ Add the following to your VSCode settings:
|
|
|
102
104
|
</details>
|
|
103
105
|
|
|
104
106
|
<details>
|
|
105
|
-
<summary>CSpell Settings
|
|
107
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
106
108
|
|
|
107
109
|
**`cspell.config.yaml`**
|
|
108
110
|
|
|
109
111
|
```yaml
|
|
110
112
|
import:
|
|
111
|
-
- https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy
|
|
113
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-en-gb-legacy/cspell-ext.json
|
|
112
114
|
language: en-GB
|
|
113
115
|
```
|
|
114
116
|
|
|
115
117
|
</details>
|
|
116
118
|
|
|
119
|
+
## Dictionary Information
|
|
120
|
+
|
|
121
|
+
| Name | Enabled | Description |
|
|
122
|
+
| -------------- | ------- | --------------------------------- |
|
|
123
|
+
| `en-gb-legacy` | | Legacy British English Dictionary |
|
|
124
|
+
|
|
125
|
+
## Language Settings
|
|
126
|
+
|
|
127
|
+
| Name | Locale | File Type |
|
|
128
|
+
| -------------- | ------- | --------- |
|
|
129
|
+
| `en-gb-legacy` | `en-GB` | `*` |
|
|
130
|
+
|
|
117
131
|
<!--- @@inject-end: ./static/install.md --->
|
|
118
132
|
|
|
119
133
|
<!--- @@inject: ../../static/contributing.md --->
|
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.11",
|
|
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": "627831379fe16dbfcfbf05fe747f05320b86e615"
|
|
52
52
|
}
|