Skip to content

Commit 7a24174

Browse files
committed
Update dependencies: @eslint/js to 9.27.0, @stylistic/eslint-plugin to 4.4.0, @vscode/test-electron to 2.5.2, @vscode/vsce to 3.4.2, eslint to 9.27.0, eslint-plugin-n to 17.18.0, eslint-plugin-unicorn to 59.0.1, terser-webpack-plugin to 5.3.14, webpack to 5.99.9.
1 parent 8835671 commit 7a24174

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

extension.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1063,6 +1063,7 @@ export function activate (context) {
10631063
);
10641064

10651065
// Register Commands
1066+
// eslint-disable-next-line unicorn/prefer-single-call
10661067
context.subscriptions.push(
10671068
vscode.commands.registerCommand(fixAllCommandName, fixAll),
10681069
vscode.commands.registerCommand(fixLineCommandName, fixLine),

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,20 +44,20 @@
4444
"markdownlint-cli2": "0.18.1"
4545
},
4646
"devDependencies": {
47-
"@eslint/js": "9.20.0",
48-
"@stylistic/eslint-plugin": "3.1.0",
47+
"@eslint/js": "9.27.0",
48+
"@stylistic/eslint-plugin": "4.4.0",
4949
"@types/vscode": "1.75.0",
50-
"@vscode/test-electron": "2.4.1",
51-
"@vscode/vsce": "3.2.2",
50+
"@vscode/test-electron": "2.5.2",
51+
"@vscode/vsce": "3.4.2",
5252
"cpy-cli": "5.0.0",
53-
"eslint": "9.20.1",
54-
"eslint-plugin-n": "17.15.1",
55-
"eslint-plugin-unicorn": "56.0.1",
53+
"eslint": "9.27.0",
54+
"eslint-plugin-n": "17.18.0",
55+
"eslint-plugin-unicorn": "59.0.1",
5656
"path-browserify": "1.0.1",
5757
"stream-browserify": "3.0.0",
58-
"terser-webpack-plugin": "5.3.11",
58+
"terser-webpack-plugin": "5.3.14",
5959
"util": "0.12.5",
60-
"webpack": "5.98.0",
60+
"webpack": "5.99.9",
6161
"webpack-cli": "6.0.1"
6262
},
6363
"keywords": [

stringify-error.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ function stringifyError (error) {
3535
}
3636
if (cause) {
3737
result.push("cause:");
38+
// eslint-disable-next-line unicorn/prefer-single-call
3839
result.push(...toIndentedLines(stringifyError(cause)));
3940
}
4041
if (errors.length > 0) {

0 commit comments

Comments
 (0)