Skip to content

Commit b5a8a81

Browse files
dependabot[bot]targos
authored andcommitted
tools: bump eslint version
Bumps the eslint group in /tools/eslint with 5 updates: | Package | From | To | | --- | --- | --- | | `@babel/core` | `7.26.0` | `7.26.7` | | `@babel/eslint-parser` | `7.25.9` | `7.26.5` | | `@stylistic/eslint-plugin-js` | `2.12.1` | `3.0.1` | | `eslint` | `9.17.0` | `9.19.0` | | `eslint-plugin-jsdoc` | `50.6.1` | `50.6.3` | Signed-off-by: dependabot[bot] <[email protected]> PR-URL: #56869 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
1 parent cfea53e commit b5a8a81

File tree

4 files changed

+130
-100
lines changed

4 files changed

+130
-100
lines changed

lib/internal/test_runner/reporter/junit.js

+5-3
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,11 @@ function treeToXML(tree) {
4141
if (comment) {
4242
return `${indent}<!-- ${escapeComment(comment)} -->\n`;
4343
}
44-
const attrsString = ArrayPrototypeJoin(ArrayPrototypeMap(ObjectEntries(attrs)
45-
, ({ 0: key, 1: value }) => `${key}="${escapeAttribute(String(value))}"`)
46-
, ' ');
44+
const attrsString = ArrayPrototypeJoin(
45+
ArrayPrototypeMap(
46+
ObjectEntries(attrs),
47+
({ 0: key, 1: value }) => `${key}="${escapeAttribute(String(value))}"`),
48+
' ');
4749
if (!children?.length) {
4850
return `${indent}<${tag} ${attrsString}/>\n`;
4951
}

test/parallel/test-stream-reduce.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ function sum(p, c) {
6161
throw new Error('boom');
6262
}
6363
return c;
64-
}, 0)
65-
, /boom/).then(common.mustCall());
64+
}, 0),
65+
/boom/).then(common.mustCall());
6666
}
6767

6868
{

0 commit comments

Comments
 (0)