@cspell/dict-cspell-bundle 2.0.15 → 2.0.17
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 +159 -6
- package/package.json +57 -57
package/README.md
CHANGED
|
@@ -4,24 +4,177 @@ Dictionaries included with the CSpell Command Line tool.
|
|
|
4
4
|
|
|
5
5
|
This is a pre-built dictionary for use with CSpell.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<!--- @@inject: ../../static/requirements.md --->
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
## Requirements
|
|
10
|
+
|
|
11
|
+
| Tool | Version |
|
|
12
|
+
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
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 --->
|
|
17
|
+
|
|
18
|
+
<!--- @@inject: ./static/install.md --->
|
|
19
|
+
|
|
20
|
+
## Local Installation
|
|
10
21
|
|
|
11
22
|
```sh
|
|
12
|
-
npm
|
|
23
|
+
npm install -D @cspell/dict-cspell-bundle
|
|
13
24
|
```
|
|
14
25
|
|
|
15
|
-
|
|
26
|
+
## Configuration
|
|
27
|
+
|
|
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-cspell-bundle/cspell-ext.json"],
|
|
38
|
+
"cSpell.dictionaries": [],
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
</details>
|
|
43
|
+
|
|
44
|
+
<details>
|
|
45
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
46
|
+
|
|
47
|
+
**`cspell.json`**
|
|
16
48
|
|
|
17
49
|
```jsonc
|
|
18
50
|
{
|
|
19
|
-
// …
|
|
20
51
|
"import": ["@cspell/dict-cspell-bundle/cspell-ext.json"],
|
|
21
|
-
|
|
52
|
+
"dictionaries": [],
|
|
53
|
+
}
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
</details>
|
|
57
|
+
|
|
58
|
+
<details>
|
|
59
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
60
|
+
|
|
61
|
+
**`cspell.config.yaml`**
|
|
62
|
+
|
|
63
|
+
```yaml
|
|
64
|
+
import:
|
|
65
|
+
- '@cspell/dict-cspell-bundle/cspell-ext.json'
|
|
66
|
+
dictionaries: []
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
</details>
|
|
70
|
+
|
|
71
|
+
## Local Installation using CDN
|
|
72
|
+
|
|
73
|
+
## CDN Configuration
|
|
74
|
+
|
|
75
|
+
<details>
|
|
76
|
+
<summary>VSCode Settings</summary>
|
|
77
|
+
|
|
78
|
+
Add the following to your VSCode settings:
|
|
79
|
+
|
|
80
|
+
**`.vscode/settings.json`**
|
|
81
|
+
|
|
82
|
+
```jsonc
|
|
83
|
+
{
|
|
84
|
+
"cSpell.import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-cspell-bundle@latest/cspell-ext.json/cspell-ext.json"],
|
|
85
|
+
"cSpell.dictionaries": [],
|
|
22
86
|
}
|
|
23
87
|
```
|
|
24
88
|
|
|
89
|
+
</details>
|
|
90
|
+
|
|
91
|
+
<details>
|
|
92
|
+
<summary>CSpell Settings <code>cspell.json</code></summary>
|
|
93
|
+
|
|
94
|
+
**`cspell.json`**
|
|
95
|
+
|
|
96
|
+
```jsonc
|
|
97
|
+
{
|
|
98
|
+
"import": ["https://cdn.jsdelivr.net/npm/@cspell/dict-cspell-bundle@latest/cspell-ext.json/cspell-ext.json"],
|
|
99
|
+
"dictionaries": [],
|
|
100
|
+
}
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
</details>
|
|
104
|
+
|
|
105
|
+
<details>
|
|
106
|
+
<summary>CSpell Settings <code>cspell.config.yaml</code></summary>
|
|
107
|
+
|
|
108
|
+
**`cspell.config.yaml`**
|
|
109
|
+
|
|
110
|
+
```yaml
|
|
111
|
+
import:
|
|
112
|
+
- https://cdn.jsdelivr.net/npm/@cspell/dict-cspell-bundle@latest/cspell-ext.json/cspell-ext.json
|
|
113
|
+
dictionaries: []
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
</details>
|
|
117
|
+
|
|
118
|
+
## Dictionary Information
|
|
119
|
+
|
|
120
|
+
| Name | Enabled | Description |
|
|
121
|
+
| ---------------------- | ------- | ----------- |
|
|
122
|
+
| `typescript` | | _External_ |
|
|
123
|
+
| `node` | | _External_ |
|
|
124
|
+
| `npm` | | _External_ |
|
|
125
|
+
| `html` | | _External_ |
|
|
126
|
+
| `html-symbol-entities` | | _External_ |
|
|
127
|
+
| `css` | | _External_ |
|
|
128
|
+
| `fonts` | | _External_ |
|
|
129
|
+
| `php` | | _External_ |
|
|
130
|
+
|
|
131
|
+
## Language Settings
|
|
132
|
+
|
|
133
|
+
| Name | Locale | File Type |
|
|
134
|
+
| ---------------------- | ------ | ------------------------------------------- |
|
|
135
|
+
| `typescript` | | `javascript`, `javascriptreact` |
|
|
136
|
+
| `typescript` | | `typescript`, `typescriptreact`, `mdx` |
|
|
137
|
+
| `typescript` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
138
|
+
| `node` | | `javascript`, `javascriptreact` |
|
|
139
|
+
| `node` | | `typescript`, `typescriptreact`, `mdx` |
|
|
140
|
+
| `node` | | `json`, `jsonc` |
|
|
141
|
+
| `npm` | | `javascript`, `javascriptreact` |
|
|
142
|
+
| `npm` | | `typescript`, `typescriptreact`, `mdx` |
|
|
143
|
+
| `npm` | | `markdown`, `asciidoc` |
|
|
144
|
+
| `npm` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
145
|
+
| `npm` | | `json`, `jsonc` |
|
|
146
|
+
| `html` | | `javascriptreact`, `typescriptreact`, `mdx` |
|
|
147
|
+
| `html` | | `markdown`, `asciidoc` |
|
|
148
|
+
| `html` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
149
|
+
| `html-symbol-entities` | | `javascriptreact`, `typescriptreact`, `mdx` |
|
|
150
|
+
| `html-symbol-entities` | | `markdown`, `asciidoc` |
|
|
151
|
+
| `html-symbol-entities` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
152
|
+
| `css` | | `javascriptreact`, `typescriptreact`, `mdx` |
|
|
153
|
+
| `css` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
154
|
+
| `css` | | `css`, `less`, `scss` |
|
|
155
|
+
| `fonts` | | `javascriptreact`, `typescriptreact`, `mdx` |
|
|
156
|
+
| `fonts` | | `html`, `pug`, `jade`, `php`, `handlebars` |
|
|
157
|
+
| `fonts` | | `css`, `less`, `scss` |
|
|
158
|
+
| `php` | | `php` |
|
|
159
|
+
|
|
160
|
+
<!--- @@inject-end: ./static/install.md --->
|
|
161
|
+
|
|
162
|
+
<!--- @@inject: ../../static/contributing.md --->
|
|
163
|
+
|
|
164
|
+
## Contributing
|
|
165
|
+
|
|
166
|
+
Please help correct any mistakes in the dictionaries.
|
|
167
|
+
|
|
168
|
+
See: [Contributing](https://github.com/streetsidesoftware/cspell-dicts#contributing)
|
|
169
|
+
|
|
170
|
+
Special thanks to all of our amazing contributors!
|
|
171
|
+
|
|
172
|
+
### Dictionary Development
|
|
173
|
+
|
|
174
|
+
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
175
|
+
|
|
176
|
+
<!--- @@inject-end: ../../static/contributing.md --->
|
|
177
|
+
|
|
25
178
|
## License
|
|
26
179
|
|
|
27
180
|
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-cspell-bundle",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
4
4
|
"description": "Dictionaries included with the CSpell Command Line tool.",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -38,66 +38,66 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/cspell#readme",
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cspell/dict-ada": "^4.1.
|
|
42
|
-
"@cspell/dict-al": "^1.1.
|
|
43
|
-
"@cspell/dict-aws": "^4.0.
|
|
44
|
-
"@cspell/dict-bash": "^4.2.
|
|
45
|
-
"@cspell/dict-companies": "^3.2.
|
|
46
|
-
"@cspell/dict-cpp": "^6.0.
|
|
47
|
-
"@cspell/dict-cryptocurrencies": "^5.0.
|
|
48
|
-
"@cspell/dict-csharp": "^4.0.
|
|
49
|
-
"@cspell/dict-css": "^4.0.
|
|
50
|
-
"@cspell/dict-dart": "^2.3.
|
|
51
|
-
"@cspell/dict-django": "^4.1.
|
|
52
|
-
"@cspell/dict-docker": "^1.1.
|
|
53
|
-
"@cspell/dict-dotnet": "^5.0.
|
|
54
|
-
"@cspell/dict-elixir": "^4.0.
|
|
55
|
-
"@cspell/dict-en-common-misspellings": "^2.1.
|
|
56
|
-
"@cspell/dict-en-gb-mit": "^3.1.
|
|
57
|
-
"@cspell/dict-en_us": "^4.4.
|
|
58
|
-
"@cspell/dict-filetypes": "^3.0.
|
|
59
|
-
"@cspell/dict-flutter": "^1.1.
|
|
60
|
-
"@cspell/dict-fonts": "^4.0.
|
|
61
|
-
"@cspell/dict-fsharp": "^1.1.
|
|
62
|
-
"@cspell/dict-fullstack": "^3.2.
|
|
63
|
-
"@cspell/dict-gaming-terms": "^1.1.
|
|
64
|
-
"@cspell/dict-git": "^3.0.
|
|
65
|
-
"@cspell/dict-golang": "^6.0.
|
|
66
|
-
"@cspell/dict-google": "^1.0.
|
|
67
|
-
"@cspell/dict-haskell": "^4.0.
|
|
68
|
-
"@cspell/dict-html": "^4.0.
|
|
69
|
-
"@cspell/dict-html-symbol-entities": "^4.0.
|
|
70
|
-
"@cspell/dict-java": "^5.0.
|
|
71
|
-
"@cspell/dict-julia": "^1.1.
|
|
72
|
-
"@cspell/dict-k8s": "^1.0.
|
|
73
|
-
"@cspell/dict-latex": "^4.0.
|
|
74
|
-
"@cspell/dict-lorem-ipsum": "^4.0.
|
|
75
|
-
"@cspell/dict-lua": "^4.0.
|
|
76
|
-
"@cspell/dict-makefile": "^1.0.
|
|
77
|
-
"@cspell/dict-markdown": "^2.0.
|
|
78
|
-
"@cspell/dict-monkeyc": "^1.0.
|
|
79
|
-
"@cspell/dict-node": "^5.0.
|
|
80
|
-
"@cspell/dict-npm": "^5.2.
|
|
81
|
-
"@cspell/dict-php": "^4.0.
|
|
82
|
-
"@cspell/dict-powershell": "^5.0.
|
|
83
|
-
"@cspell/dict-public-licenses": "^2.0.
|
|
84
|
-
"@cspell/dict-python": "^4.2.
|
|
85
|
-
"@cspell/dict-r": "^2.1.
|
|
86
|
-
"@cspell/dict-ruby": "^5.0.
|
|
87
|
-
"@cspell/dict-rust": "^4.0.
|
|
88
|
-
"@cspell/dict-scala": "^5.0.
|
|
89
|
-
"@cspell/dict-software-terms": "^5.1.
|
|
90
|
-
"@cspell/dict-sql": "^2.2.
|
|
91
|
-
"@cspell/dict-svelte": "^1.0.
|
|
92
|
-
"@cspell/dict-swift": "^2.0.
|
|
93
|
-
"@cspell/dict-terraform": "^1.1.
|
|
94
|
-
"@cspell/dict-typescript": "^3.2.
|
|
95
|
-
"@cspell/dict-vue": "^3.0.
|
|
41
|
+
"@cspell/dict-ada": "^4.1.1",
|
|
42
|
+
"@cspell/dict-al": "^1.1.1",
|
|
43
|
+
"@cspell/dict-aws": "^4.0.12",
|
|
44
|
+
"@cspell/dict-bash": "^4.2.1",
|
|
45
|
+
"@cspell/dict-companies": "^3.2.2",
|
|
46
|
+
"@cspell/dict-cpp": "^6.0.9",
|
|
47
|
+
"@cspell/dict-cryptocurrencies": "^5.0.5",
|
|
48
|
+
"@cspell/dict-csharp": "^4.0.7",
|
|
49
|
+
"@cspell/dict-css": "^4.0.18",
|
|
50
|
+
"@cspell/dict-dart": "^2.3.1",
|
|
51
|
+
"@cspell/dict-django": "^4.1.5",
|
|
52
|
+
"@cspell/dict-docker": "^1.1.15",
|
|
53
|
+
"@cspell/dict-dotnet": "^5.0.10",
|
|
54
|
+
"@cspell/dict-elixir": "^4.0.8",
|
|
55
|
+
"@cspell/dict-en-common-misspellings": "^2.1.3",
|
|
56
|
+
"@cspell/dict-en-gb-mit": "^3.1.5",
|
|
57
|
+
"@cspell/dict-en_us": "^4.4.15",
|
|
58
|
+
"@cspell/dict-filetypes": "^3.0.13",
|
|
59
|
+
"@cspell/dict-flutter": "^1.1.1",
|
|
60
|
+
"@cspell/dict-fonts": "^4.0.5",
|
|
61
|
+
"@cspell/dict-fsharp": "^1.1.1",
|
|
62
|
+
"@cspell/dict-fullstack": "^3.2.7",
|
|
63
|
+
"@cspell/dict-gaming-terms": "^1.1.2",
|
|
64
|
+
"@cspell/dict-git": "^3.0.7",
|
|
65
|
+
"@cspell/dict-golang": "^6.0.23",
|
|
66
|
+
"@cspell/dict-google": "^1.0.9",
|
|
67
|
+
"@cspell/dict-haskell": "^4.0.6",
|
|
68
|
+
"@cspell/dict-html": "^4.0.12",
|
|
69
|
+
"@cspell/dict-html-symbol-entities": "^4.0.4",
|
|
70
|
+
"@cspell/dict-java": "^5.0.12",
|
|
71
|
+
"@cspell/dict-julia": "^1.1.1",
|
|
72
|
+
"@cspell/dict-k8s": "^1.0.12",
|
|
73
|
+
"@cspell/dict-latex": "^4.0.4",
|
|
74
|
+
"@cspell/dict-lorem-ipsum": "^4.0.5",
|
|
75
|
+
"@cspell/dict-lua": "^4.0.8",
|
|
76
|
+
"@cspell/dict-makefile": "^1.0.5",
|
|
77
|
+
"@cspell/dict-markdown": "^2.0.12",
|
|
78
|
+
"@cspell/dict-monkeyc": "^1.0.11",
|
|
79
|
+
"@cspell/dict-node": "^5.0.8",
|
|
80
|
+
"@cspell/dict-npm": "^5.2.11",
|
|
81
|
+
"@cspell/dict-php": "^4.0.15",
|
|
82
|
+
"@cspell/dict-powershell": "^5.0.15",
|
|
83
|
+
"@cspell/dict-public-licenses": "^2.0.14",
|
|
84
|
+
"@cspell/dict-python": "^4.2.19",
|
|
85
|
+
"@cspell/dict-r": "^2.1.1",
|
|
86
|
+
"@cspell/dict-ruby": "^5.0.9",
|
|
87
|
+
"@cspell/dict-rust": "^4.0.12",
|
|
88
|
+
"@cspell/dict-scala": "^5.0.8",
|
|
89
|
+
"@cspell/dict-software-terms": "^5.1.4",
|
|
90
|
+
"@cspell/dict-sql": "^2.2.1",
|
|
91
|
+
"@cspell/dict-svelte": "^1.0.7",
|
|
92
|
+
"@cspell/dict-swift": "^2.0.6",
|
|
93
|
+
"@cspell/dict-terraform": "^1.1.3",
|
|
94
|
+
"@cspell/dict-typescript": "^3.2.3",
|
|
95
|
+
"@cspell/dict-vue": "^3.0.5"
|
|
96
96
|
},
|
|
97
97
|
"files": [
|
|
98
98
|
"cspell-ext.json",
|
|
99
99
|
"*.js",
|
|
100
100
|
"*.d.ts"
|
|
101
101
|
],
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "0f12a733b776d13a9dc46c431b587cfadad460b3"
|
|
103
103
|
}
|