@cspell/eslint-plugin 8.8.1 → 8.8.2
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 +1 -5
- package/dist/worker/spellCheck.mjs +2 -2
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -326,11 +326,7 @@ The maintainers of cspell and thousands of other packages are working with Tidel
|
|
|
326
326
|
|
|
327
327
|
---
|
|
328
328
|
|
|
329
|
-
<p align="center">
|
|
330
|
-
Brought to you by <a href="https://streetsidesoftware.com" title="Street Side Software">
|
|
331
|
-
<img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software
|
|
332
|
-
</a>
|
|
333
|
-
</p>
|
|
329
|
+
<p align="center">Brought to you by<a href="https://streetsidesoftware.com" title="Street Side Software"><img width="16" alt="Street Side Software Logo" src="https://i.imgur.com/CyduuVY.png" /> Street Side Software</a></p>
|
|
334
330
|
|
|
335
331
|
<!--- @@inject-end: ../../static/footer.md --->
|
|
336
332
|
|
|
@@ -399,7 +399,7 @@ async function reportConfigurationErrors(config, knownConfigErrors) {
|
|
|
399
399
|
if (knownConfigErrors.has(key))
|
|
400
400
|
return;
|
|
401
401
|
knownConfigErrors.add(key);
|
|
402
|
-
errors.push(Error('Configuration Error: \n ' + ref.error.message));
|
|
402
|
+
errors.push(new Error('Configuration Error: \n ' + ref.error.message));
|
|
403
403
|
});
|
|
404
404
|
const dictCollection = await getDictionary(config);
|
|
405
405
|
dictCollection.dictionaries.forEach((dict) => {
|
|
@@ -411,7 +411,7 @@ async function reportConfigurationErrors(config, knownConfigErrors) {
|
|
|
411
411
|
return;
|
|
412
412
|
knownConfigErrors.add(key);
|
|
413
413
|
const errMsg = `${msg}: ${error.message}\n Source: ${dict.source}`;
|
|
414
|
-
errors.push(Error(errMsg));
|
|
414
|
+
errors.push(new Error(errMsg));
|
|
415
415
|
});
|
|
416
416
|
});
|
|
417
417
|
return errors;
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "8.8.
|
|
6
|
+
"version": "8.8.2",
|
|
7
7
|
"description": "CSpell ESLint plugin",
|
|
8
8
|
"keywords": [
|
|
9
9
|
"cspell",
|
|
@@ -74,30 +74,30 @@
|
|
|
74
74
|
"node": ">=18"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@eslint/eslintrc": "^3.0
|
|
78
|
-
"@eslint/js": "^9.
|
|
77
|
+
"@eslint/eslintrc": "^3.1.0",
|
|
78
|
+
"@eslint/js": "^9.3.0",
|
|
79
79
|
"@types/estree": "^1.0.5",
|
|
80
80
|
"@types/mocha": "^10.0.6",
|
|
81
|
-
"@typescript-eslint/parser": "^7.
|
|
82
|
-
"@typescript-eslint/types": "^7.
|
|
83
|
-
"eslint": "^9.
|
|
84
|
-
"eslint-plugin-n": "^17.
|
|
81
|
+
"@typescript-eslint/parser": "^7.10.0",
|
|
82
|
+
"@typescript-eslint/types": "^7.10.0",
|
|
83
|
+
"eslint": "^9.3.0",
|
|
84
|
+
"eslint-plugin-n": "^17.7.0",
|
|
85
85
|
"eslint-plugin-react": "^7.34.1",
|
|
86
86
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
87
|
-
"globals": "^15.
|
|
87
|
+
"globals": "^15.3.0",
|
|
88
88
|
"mocha": "^10.4.0",
|
|
89
89
|
"ts-json-schema-generator": "^2.1.1",
|
|
90
90
|
"typescript": "^5.4.5",
|
|
91
|
-
"typescript-eslint": "^7.
|
|
91
|
+
"typescript-eslint": "^7.10.0"
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {
|
|
94
|
-
"@cspell/cspell-types": "8.8.
|
|
95
|
-
"cspell-lib": "8.8.
|
|
94
|
+
"@cspell/cspell-types": "8.8.2",
|
|
95
|
+
"cspell-lib": "8.8.2",
|
|
96
96
|
"estree-walker": "^3.0.3",
|
|
97
97
|
"synckit": "^0.9.0"
|
|
98
98
|
},
|
|
99
99
|
"peerDependencies": {
|
|
100
100
|
"eslint": "^7 || ^8 || ^9"
|
|
101
101
|
},
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "e82ec807677c040c38b7d5608c8a8d42185d3b24"
|
|
103
103
|
}
|