@cspell/dict-en-au 1.1.4 → 1.1.6

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 CHANGED
@@ -117,17 +117,19 @@ language: en-AU
117
117
 
118
118
  ## Dictionary Information
119
119
 
120
- | Name | Enabled | Description |
121
- | ------------------------ | ------- | ----------------------------- |
122
- | `en-au` | | Australian English Dictionary |
123
- | `en-common-misspellings` | | _External_ |
120
+ | Name | Enabled | Description |
121
+ | --------------------------- | ------- | ----------------------------- |
122
+ | `en-au` | | Australian English Dictionary |
123
+ | `en-common-misspellings` | | _External_ |
124
+ | `en-gb-common-misspellings` | | _External_ |
124
125
 
125
126
  ## Language Settings
126
127
 
127
- | Name | Locale | File Type |
128
- | ------------------------ | ------- | --------- |
129
- | `en-au` | `en-AU` | `*` |
130
- | `en-common-misspellings` | `en-AU` | `*` |
128
+ | Name | Locale | File Type |
129
+ | --------------------------- | ------- | --------- |
130
+ | `en-au` | `en-AU` | `*` |
131
+ | `en-common-misspellings` | `en-AU` | `*` |
132
+ | `en-gb-common-misspellings` | `en-AU` | `*` |
131
133
 
132
134
  <!--- @@inject-end: ./static/install.md --->
133
135
 
package/cspell-ext.json CHANGED
@@ -1,46 +1,28 @@
1
- // cSpell Settings
2
1
  {
3
2
  "id": "en-au",
4
3
  "name": "English - Australian",
5
4
  "description": "Australian English Dictionary",
6
5
  "readonly": true,
7
- // List of dictionary files to add to the global list of dictionaries
8
6
  "dictionaryDefinitions": [
9
7
  {
10
8
  "name": "en-au",
11
9
  "path": "./en_AU.trie",
12
10
  "repMap": [["'|`|’", "'"]],
13
- "description": "Australian English Dictionary"
11
+ "description": "Australian English Dictionary",
12
+ "ignoreForbiddenWords": true
14
13
  }
15
14
  ],
16
- // Dictionaries to always be used.
17
- // Generally left empty
18
- "dictionaries": [],
19
- // Language Rules to apply to matching files.
20
- // Files are matched on `languageId` and `locale`
21
15
  "languageSettings": [
22
16
  {
23
- // VSCode languageId. i.e. typescript, java, go, cpp, javascript, markdown, latex
24
- // * will match against any file type.
25
17
  "languageId": "*",
26
- // Language locale. i.e. en-US, de-AT, or ru. * will match all locals.
27
18
  "locale": "en-AU",
28
- //
29
- "ignoreRegExpList": [],
30
- "includeRegExpList": [],
31
- // regex patterns than can be used with ignoreRegExpList or includeRegExpList
32
- // Example: "pattern": [{ "name": "mdash", "pattern": "&mdash;" }]
33
- // This could be included in "ignoreRegExpList": ["mdash"]
34
19
  "patterns": [
35
20
  {
36
21
  "name": "possessive_s",
37
22
  "pattern": "/'s\\b/gi"
38
23
  }
39
24
  ],
40
- // List of dictionaries to enable by name in `dictionaryDefinitions`
41
- "dictionaries": ["en-au", "en-common-misspellings"],
42
- // Dictionary definitions can also be supplied here
43
- "dictionaryDefinitions": []
25
+ "dictionaries": ["en-au", "en-common-misspellings", "en-gb-common-misspellings"]
44
26
  }
45
27
  ]
46
28
  }