Skip to content

Commit 7c16804

Browse files
ci: Workflow Bot -- Update ALL Dependencies (main) (#441)
Co-authored-by: Jason3S <3740137+Jason3S@users.noreply.github.com> Co-authored-by: Jason Dent <jason@streetsidesoftware.nl>
1 parent d6c28ea commit 7c16804

File tree

4 files changed

+510
-460
lines changed

4 files changed

+510
-460
lines changed

package.json

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,22 +48,28 @@
4848
"type": "git",
4949
"url": "https://github.com/streetsidesoftware/jest-mock-vscode.git"
5050
},
51+
"pnpm": {
52+
"overrides": {},
53+
"patchedDependencies": {
54+
"eslint@9.15.0": "patches/eslint@9.15.0.patch"
55+
}
56+
},
5157
"devDependencies": {
52-
"@eslint/js": "^9.14.0",
58+
"@eslint/js": "^9.15.0",
5359
"@jest/globals": "^29.7.0",
5460
"@tsconfig/node20": "^20.1.4",
5561
"@types/node": "^20.17.6",
5662
"@types/vscode": "^1.95.0",
57-
"eslint": "^9.14.0",
58-
"eslint-plugin-n": "^17.12.0",
63+
"eslint": "^9.15.0",
64+
"eslint-plugin-n": "^17.13.2",
5965
"eslint-plugin-simple-import-sort": "^12.1.1",
60-
"inject-markdown": "^3.1.0",
66+
"inject-markdown": "^3.1.4",
6167
"jest": "^29.7.0",
6268
"prettier": "^3.3.3",
6369
"rfdc": "^1.4.1",
6470
"ts-jest": "^29.2.5",
6571
"typescript": "^5.6.3",
66-
"typescript-eslint": "^8.13.0"
72+
"typescript-eslint": "^8.14.0"
6773
},
6874
"dependencies": {
6975
"vscode-uri": "^3.0.8"

patches/eslint@9.15.0.patch

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
diff --git a/lib/rules/no-empty-function.js b/lib/rules/no-empty-function.js
2+
index 16e611bb138acd0bf4f36218c32235f317f51f9d..1a39313f3b9dfc280eb74f9df699ac8f16011364 100644
3+
--- a/lib/rules/no-empty-function.js
4+
+++ b/lib/rules/no-empty-function.js
5+
@@ -122,7 +122,7 @@ module.exports = {
6+
},
7+
8+
create(context) {
9+
- const [{ allow }] = context.options;
10+
+ const [{ allow } = this.meta.defaultOptions[0]] = context.options;
11+
const sourceCode = context.sourceCode;
12+
13+
/**
14+
diff --git a/lib/rules/no-unused-expressions.js b/lib/rules/no-unused-expressions.js
15+
index fd1437c1606a56cbce147d040d601d0acef3d24a..1ac2d6e45fbb04f93d9cccdc5265bb38c3701aca 100644
16+
--- a/lib/rules/no-unused-expressions.js
17+
+++ b/lib/rules/no-unused-expressions.js
18+
@@ -76,7 +76,7 @@ module.exports = {
19+
allowTernary,
20+
allowTaggedTemplates,
21+
enforceForJSX
22+
- }] = context.options;
23+
+ } = {}] = context.options;
24+
25+
/**
26+
* Has AST suggesting a directive.
27+
diff --git a/lib/rules/no-warning-comments.js b/lib/rules/no-warning-comments.js
28+
index 628f5a2ac513303cc3fe2cc9adcbf1ae54128747..a42e8318e028c6a3717afceef3c949bf8eab5827 100644
29+
--- a/lib/rules/no-warning-comments.js
30+
+++ b/lib/rules/no-warning-comments.js
31+
@@ -64,7 +64,7 @@ module.exports = {
32+
33+
create(context) {
34+
const sourceCode = context.sourceCode;
35+
- const [{ decoration, location, terms: warningTerms }] = context.options;
36+
+ const [{ decoration, location, terms: warningTerms } = this.meta.defaultOptions[0]] = context.options;
37+
const escapedDecoration = escapeRegExp(decoration ? decoration.join("") : "");
38+
const selfConfigRegEx = /\bno-warning-comments\b/u;
39+

0 commit comments

Comments
 (0)