@cspell/cspell-bundled-dicts 8.6.0 → 8.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/cspell-default.config.js +4 -1
- package/package.json +9 -5
package/cspell-default.config.js
CHANGED
|
@@ -114,7 +114,7 @@ const settings = {
|
|
|
114
114
|
ignoreRegExpList: ['MARKDOWN-link-reference', 'MARKDOWN-link-footer', 'MARKDOWN-link', 'MARKDOWN-anchor'],
|
|
115
115
|
},
|
|
116
116
|
],
|
|
117
|
-
enableFiletypes: ['svelte'],
|
|
117
|
+
enableFiletypes: ['svelte', 'julia'],
|
|
118
118
|
import: [
|
|
119
119
|
'@cspell/dict-ada/cspell-ext.json',
|
|
120
120
|
'@cspell/dict-aws/cspell-ext.json',
|
|
@@ -143,11 +143,13 @@ const settings = {
|
|
|
143
143
|
'@cspell/dict-html-symbol-entities/cspell-ext.json',
|
|
144
144
|
'@cspell/dict-html/cspell-ext.json',
|
|
145
145
|
'@cspell/dict-java/cspell-ext.json',
|
|
146
|
+
'@cspell/dict-julia/cspell-ext.json',
|
|
146
147
|
'@cspell/dict-k8s/cspell-ext.json',
|
|
147
148
|
'@cspell/dict-latex/cspell-ext.json',
|
|
148
149
|
'@cspell/dict-lorem-ipsum/cspell-ext.json',
|
|
149
150
|
'@cspell/dict-lua/cspell-ext.json',
|
|
150
151
|
'@cspell/dict-makefile/cspell-ext.json',
|
|
152
|
+
'@cspell/dict-monkeyc/cspell-ext.json',
|
|
151
153
|
'@cspell/dict-node/cspell-ext.json',
|
|
152
154
|
'@cspell/dict-npm/cspell-ext.json',
|
|
153
155
|
'@cspell/dict-php/cspell-ext.json',
|
|
@@ -162,6 +164,7 @@ const settings = {
|
|
|
162
164
|
'@cspell/dict-software-terms/cspell-ext.json',
|
|
163
165
|
'@cspell/dict-svelte/cspell-ext.json',
|
|
164
166
|
'@cspell/dict-swift/cspell-ext.json',
|
|
167
|
+
'@cspell/dict-terraform/cspell-ext.json',
|
|
165
168
|
'@cspell/dict-typescript/cspell-ext.json',
|
|
166
169
|
'@cspell/dict-vue/cspell-ext.json',
|
|
167
170
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/cspell-bundled-dicts",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.7.0",
|
|
4
4
|
"description": "Dictionaries bundled with cspell",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
},
|
|
31
31
|
"repository": {
|
|
32
32
|
"type": "git",
|
|
33
|
-
"url": "
|
|
33
|
+
"url": "https://github.com/streetsidesoftware/cspell.git",
|
|
34
|
+
"directory": "packages/cspell-bundled-dicts"
|
|
34
35
|
},
|
|
35
36
|
"keywords": [
|
|
36
37
|
"spell",
|
|
@@ -72,11 +73,13 @@
|
|
|
72
73
|
"@cspell/dict-html": "^4.0.5",
|
|
73
74
|
"@cspell/dict-html-symbol-entities": "^4.0.0",
|
|
74
75
|
"@cspell/dict-java": "^5.0.6",
|
|
76
|
+
"@cspell/dict-julia": "^1.0.1",
|
|
75
77
|
"@cspell/dict-k8s": "^1.0.2",
|
|
76
78
|
"@cspell/dict-latex": "^4.0.0",
|
|
77
79
|
"@cspell/dict-lorem-ipsum": "^4.0.0",
|
|
78
80
|
"@cspell/dict-lua": "^4.0.3",
|
|
79
81
|
"@cspell/dict-makefile": "^1.0.0",
|
|
82
|
+
"@cspell/dict-monkeyc": "^1.0.6",
|
|
80
83
|
"@cspell/dict-node": "^4.0.3",
|
|
81
84
|
"@cspell/dict-npm": "^5.0.15",
|
|
82
85
|
"@cspell/dict-php": "^4.0.6",
|
|
@@ -91,6 +94,7 @@
|
|
|
91
94
|
"@cspell/dict-sql": "^2.1.3",
|
|
92
95
|
"@cspell/dict-svelte": "^1.0.2",
|
|
93
96
|
"@cspell/dict-swift": "^2.0.1",
|
|
97
|
+
"@cspell/dict-terraform": "^1.0.0",
|
|
94
98
|
"@cspell/dict-typescript": "^3.1.2",
|
|
95
99
|
"@cspell/dict-vue": "^3.0.0"
|
|
96
100
|
},
|
|
@@ -98,8 +102,8 @@
|
|
|
98
102
|
"node": ">=18"
|
|
99
103
|
},
|
|
100
104
|
"devDependencies": {
|
|
101
|
-
"@cspell/cspell-tools": "8.
|
|
102
|
-
"@cspell/cspell-types": "8.
|
|
105
|
+
"@cspell/cspell-tools": "8.7.0",
|
|
106
|
+
"@cspell/cspell-types": "8.7.0"
|
|
103
107
|
},
|
|
104
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "5318079ed11fe77e981287ecf1c40d6f28dd91ed"
|
|
105
109
|
}
|