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