@cspell/cspell-bundled-dicts 9.6.4 → 9.7.0
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/dist/cspell-bundled.mjs +202 -0
- package/package.json +13 -13
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
//#region cspell-default.config.js
|
|
2
|
+
const settings = {
|
|
3
|
+
version: "0.2",
|
|
4
|
+
name: "cspell default settings .js",
|
|
5
|
+
id: "cspell-default-js",
|
|
6
|
+
readonly: true,
|
|
7
|
+
language: "en",
|
|
8
|
+
description: "Default cspell configuration.",
|
|
9
|
+
flagWords: [],
|
|
10
|
+
maxNumberOfProblems: 1e4,
|
|
11
|
+
ignorePaths: [],
|
|
12
|
+
allowCompoundWords: false,
|
|
13
|
+
dictionaryDefinitions: [],
|
|
14
|
+
dictionaries: [
|
|
15
|
+
"companies",
|
|
16
|
+
"softwareTerms",
|
|
17
|
+
"public-licenses",
|
|
18
|
+
"filetypes"
|
|
19
|
+
],
|
|
20
|
+
patterns: [
|
|
21
|
+
{
|
|
22
|
+
name: "HTML-symbol-entity",
|
|
23
|
+
description: "Matches on HTML symbols like `♣`",
|
|
24
|
+
pattern: /&[a-z]+;/g
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
name: "MARKDOWN-link-reference",
|
|
28
|
+
description: "Markdown reference link: `[This is a link][reference]`, matches `[reference]`",
|
|
29
|
+
pattern: /(?<=\])\[[-\w.`'"*&;#@ ]+\]/g
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
name: "MARKDOWN-link-footer",
|
|
33
|
+
description: "Markdown referenced link: `[reference]: https://www.google.com`, matches the entire reference.",
|
|
34
|
+
pattern: /\[[-\w.`'"*&;#@ ]+\]:( [^\s]*)?/g
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
name: "MARKDOWN-link",
|
|
38
|
+
description: "Markdown link: `[link text](link)`, matches `link`",
|
|
39
|
+
pattern: /(?<=\]\()[^)\s]+/g
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
name: "MARKDOWN-anchor",
|
|
43
|
+
description: "Markdown Anchors: `<a id=\"my_link\"></a>`, matches `my_link`",
|
|
44
|
+
pattern: /(?<=<a\s+id=")[^"\s]+/g
|
|
45
|
+
}
|
|
46
|
+
],
|
|
47
|
+
languageSettings: [
|
|
48
|
+
{
|
|
49
|
+
languageId: "javascript,javascriptreact",
|
|
50
|
+
dictionaries: [
|
|
51
|
+
"typescript",
|
|
52
|
+
"node",
|
|
53
|
+
"npm"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
languageId: "typescript,typescriptreact,mdx",
|
|
58
|
+
dictionaries: [
|
|
59
|
+
"typescript",
|
|
60
|
+
"node",
|
|
61
|
+
"npm"
|
|
62
|
+
]
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
languageId: "javascriptreact,typescriptreact,mdx",
|
|
66
|
+
dictionaries: [
|
|
67
|
+
"html",
|
|
68
|
+
"html-symbol-entities",
|
|
69
|
+
"css",
|
|
70
|
+
"fonts"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
languageId: "markdown,asciidoc",
|
|
75
|
+
dictionaries: [
|
|
76
|
+
"npm",
|
|
77
|
+
"html",
|
|
78
|
+
"html-symbol-entities"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
languageId: "html,pug,jade,php,handlebars",
|
|
83
|
+
dictionaries: [
|
|
84
|
+
"html",
|
|
85
|
+
"fonts",
|
|
86
|
+
"typescript",
|
|
87
|
+
"css",
|
|
88
|
+
"npm",
|
|
89
|
+
"html-symbol-entities"
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
languageId: "json,jsonc",
|
|
94
|
+
dictionaries: ["node", "npm"]
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
languageId: "php",
|
|
98
|
+
dictionaries: ["php"]
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
languageId: "css,less,scss",
|
|
102
|
+
dictionaries: ["fonts", "css"]
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
languageId: "map",
|
|
106
|
+
enabled: false
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
languageId: "image",
|
|
110
|
+
enabled: false
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
languageId: "binary",
|
|
114
|
+
enabled: false
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
languageId: "markdown,html,mdx",
|
|
118
|
+
ignoreRegExpList: ["HTML-symbol-entity"]
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
languageId: "html",
|
|
122
|
+
ignoreRegExpList: ["href"]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
languageId: "markdown",
|
|
126
|
+
ignoreRegExpList: [
|
|
127
|
+
"MARKDOWN-link-reference",
|
|
128
|
+
"MARKDOWN-link-footer",
|
|
129
|
+
"MARKDOWN-link",
|
|
130
|
+
"MARKDOWN-anchor"
|
|
131
|
+
]
|
|
132
|
+
}
|
|
133
|
+
],
|
|
134
|
+
import: [
|
|
135
|
+
"@cspell/dict-ada/cspell-ext.json",
|
|
136
|
+
"@cspell/dict-al/cspell-ext.json",
|
|
137
|
+
"@cspell/dict-aws/cspell-ext.json",
|
|
138
|
+
"@cspell/dict-bash/cspell-ext.json",
|
|
139
|
+
"@cspell/dict-companies/cspell-ext.json",
|
|
140
|
+
"@cspell/dict-cpp/cspell-ext.json",
|
|
141
|
+
"@cspell/dict-cryptocurrencies/cspell-ext.json",
|
|
142
|
+
"@cspell/dict-csharp/cspell-ext.json",
|
|
143
|
+
"@cspell/dict-css/cspell-ext.json",
|
|
144
|
+
"@cspell/dict-dart/cspell-ext.json",
|
|
145
|
+
"@cspell/dict-data-science/cspell-ext.json",
|
|
146
|
+
"@cspell/dict-django/cspell-ext.json",
|
|
147
|
+
"@cspell/dict-docker/cspell-ext.json",
|
|
148
|
+
"@cspell/dict-dotnet/cspell-ext.json",
|
|
149
|
+
"@cspell/dict-elixir/cspell-ext.json",
|
|
150
|
+
"@cspell/dict-en_us/cspell-ext.json",
|
|
151
|
+
"@cspell/dict-en-common-misspellings/cspell-ext.json",
|
|
152
|
+
"@cspell/dict-en-gb-mit/cspell-ext.json",
|
|
153
|
+
"@cspell/dict-filetypes/cspell-ext.json",
|
|
154
|
+
"@cspell/dict-flutter/cspell-ext.json",
|
|
155
|
+
"@cspell/dict-fonts/cspell-ext.json",
|
|
156
|
+
"@cspell/dict-fsharp/cspell-ext.json",
|
|
157
|
+
"@cspell/dict-fullstack/cspell-ext.json",
|
|
158
|
+
"@cspell/dict-gaming-terms/cspell-ext.json",
|
|
159
|
+
"@cspell/dict-git/cspell-ext.json",
|
|
160
|
+
"@cspell/dict-golang/cspell-ext.json",
|
|
161
|
+
"@cspell/dict-google/cspell-ext.json",
|
|
162
|
+
"@cspell/dict-haskell/cspell-ext.json",
|
|
163
|
+
"@cspell/dict-html-symbol-entities/cspell-ext.json",
|
|
164
|
+
"@cspell/dict-html/cspell-ext.json",
|
|
165
|
+
"@cspell/dict-java/cspell-ext.json",
|
|
166
|
+
"@cspell/dict-julia/cspell-ext.json",
|
|
167
|
+
"@cspell/dict-k8s/cspell-ext.json",
|
|
168
|
+
"@cspell/dict-kotlin/cspell-ext.json",
|
|
169
|
+
"@cspell/dict-latex/cspell-ext.json",
|
|
170
|
+
"@cspell/dict-lorem-ipsum/cspell-ext.json",
|
|
171
|
+
"@cspell/dict-lua/cspell-ext.json",
|
|
172
|
+
"@cspell/dict-makefile/cspell-ext.json",
|
|
173
|
+
"@cspell/dict-markdown/cspell-ext.json",
|
|
174
|
+
"@cspell/dict-monkeyc/cspell-ext.json",
|
|
175
|
+
"@cspell/dict-node/cspell-ext.json",
|
|
176
|
+
"@cspell/dict-npm/cspell-ext.json",
|
|
177
|
+
"@cspell/dict-php/cspell-ext.json",
|
|
178
|
+
"@cspell/dict-powershell/cspell-ext.json",
|
|
179
|
+
"@cspell/dict-public-licenses/cspell-ext.json",
|
|
180
|
+
"@cspell/dict-python/cspell-ext.json",
|
|
181
|
+
"@cspell/dict-r/cspell-ext.json",
|
|
182
|
+
"@cspell/dict-ruby/cspell-ext.json",
|
|
183
|
+
"@cspell/dict-rust/cspell-ext.json",
|
|
184
|
+
"@cspell/dict-shell/cspell-ext.json",
|
|
185
|
+
"@cspell/dict-scala/cspell-ext.json",
|
|
186
|
+
"@cspell/dict-sql/cspell-ext.json",
|
|
187
|
+
"@cspell/dict-software-terms/cspell-ext.json",
|
|
188
|
+
"@cspell/dict-svelte/cspell-ext.json",
|
|
189
|
+
"@cspell/dict-swift/cspell-ext.json",
|
|
190
|
+
"@cspell/dict-terraform/cspell-ext.json",
|
|
191
|
+
"@cspell/dict-typescript/cspell-ext.json",
|
|
192
|
+
"@cspell/dict-vue/cspell-ext.json",
|
|
193
|
+
"@cspell/dict-zig/cspell-ext.json"
|
|
194
|
+
]
|
|
195
|
+
};
|
|
196
|
+
|
|
197
|
+
//#endregion
|
|
198
|
+
//#region src/cspell-bundled.js
|
|
199
|
+
const cspellBundled = settings;
|
|
200
|
+
|
|
201
|
+
//#endregion
|
|
202
|
+
export { cspellBundled as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/cspell-bundled-dicts",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.7.0",
|
|
4
4
|
"description": "Dictionaries bundled with cspell",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -12,17 +12,16 @@
|
|
|
12
12
|
"files": [
|
|
13
13
|
"cspell-default.json",
|
|
14
14
|
"cspell-default.config.js",
|
|
15
|
-
"cspell-
|
|
16
|
-
"compatibility-words.txt.gz"
|
|
15
|
+
"dist/cspell-bundled.mjs"
|
|
17
16
|
],
|
|
18
17
|
"exports": {
|
|
19
18
|
".": "./cspell-default.config.js",
|
|
19
|
+
"./cspell-bundled.js": "./dist/cspell-bundled.mjs",
|
|
20
20
|
"./cspell-default.config.js": "./cspell-default.config.js",
|
|
21
21
|
"./cspell-default.json": "./cspell-default.json"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
|
-
"build": "tsc -p .",
|
|
25
|
-
"build-dict": "cspell-tools-cli compile compatibility-words.txt",
|
|
24
|
+
"build": "tsc -p . && tsdown",
|
|
26
25
|
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
|
|
27
26
|
"clean-build": "pnpm run clean && pnpm run build",
|
|
28
27
|
"watch": "pnpm run build --watch",
|
|
@@ -60,11 +59,11 @@
|
|
|
60
59
|
"@cspell/dict-data-science": "^2.0.13",
|
|
61
60
|
"@cspell/dict-django": "^4.1.6",
|
|
62
61
|
"@cspell/dict-docker": "^1.1.17",
|
|
63
|
-
"@cspell/dict-dotnet": "^5.0.
|
|
62
|
+
"@cspell/dict-dotnet": "^5.0.12",
|
|
64
63
|
"@cspell/dict-elixir": "^4.0.8",
|
|
65
64
|
"@cspell/dict-en-common-misspellings": "^2.1.12",
|
|
66
|
-
"@cspell/dict-en-gb-mit": "^3.1.
|
|
67
|
-
"@cspell/dict-en_us": "^4.4.
|
|
65
|
+
"@cspell/dict-en-gb-mit": "^3.1.18",
|
|
66
|
+
"@cspell/dict-en_us": "^4.4.29",
|
|
68
67
|
"@cspell/dict-filetypes": "^3.0.15",
|
|
69
68
|
"@cspell/dict-flutter": "^1.1.1",
|
|
70
69
|
"@cspell/dict-fonts": "^4.0.5",
|
|
@@ -88,7 +87,7 @@
|
|
|
88
87
|
"@cspell/dict-markdown": "^2.0.14",
|
|
89
88
|
"@cspell/dict-monkeyc": "^1.0.12",
|
|
90
89
|
"@cspell/dict-node": "^5.0.9",
|
|
91
|
-
"@cspell/dict-npm": "^5.2.
|
|
90
|
+
"@cspell/dict-npm": "^5.2.34",
|
|
92
91
|
"@cspell/dict-php": "^4.1.1",
|
|
93
92
|
"@cspell/dict-powershell": "^5.0.15",
|
|
94
93
|
"@cspell/dict-public-licenses": "^2.0.15",
|
|
@@ -98,7 +97,7 @@
|
|
|
98
97
|
"@cspell/dict-rust": "^4.1.2",
|
|
99
98
|
"@cspell/dict-scala": "^5.0.9",
|
|
100
99
|
"@cspell/dict-shell": "^1.1.2",
|
|
101
|
-
"@cspell/dict-software-terms": "^5.1.
|
|
100
|
+
"@cspell/dict-software-terms": "^5.1.21",
|
|
102
101
|
"@cspell/dict-sql": "^2.2.1",
|
|
103
102
|
"@cspell/dict-svelte": "^1.0.7",
|
|
104
103
|
"@cspell/dict-swift": "^2.0.6",
|
|
@@ -111,8 +110,9 @@
|
|
|
111
110
|
"node": ">=20"
|
|
112
111
|
},
|
|
113
112
|
"devDependencies": {
|
|
114
|
-
"@cspell/cspell-tools": "9.
|
|
115
|
-
"@cspell/cspell-types": "9.
|
|
113
|
+
"@cspell/cspell-tools": "9.7.0",
|
|
114
|
+
"@cspell/cspell-types": "9.7.0",
|
|
115
|
+
"@cspell/dictionary-bundler-plugin": ""
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "48f64e0bd95b39011af6dc80cd8ae4d519511f73"
|
|
118
118
|
}
|