Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit b5a8a81

Browse filesBrowse 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] <support@github.com> PR-URL: #56869 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent cfea53e commit b5a8a81
Copy full SHA for b5a8a81

File tree

Expand file treeCollapse file tree

4 files changed

+130
-100
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

4 files changed

+130
-100
lines changed
Open diff view settings
Collapse file

‎lib/internal/test_runner/reporter/junit.js‎

Copy file name to clipboardExpand all lines: lib/internal/test_runner/reporter/junit.js
+5-3Lines changed: 5 additions & 3 deletions
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
}
Collapse file

‎test/parallel/test-stream-reduce.js‎

Copy file name to clipboardExpand all lines: test/parallel/test-stream-reduce.js
+2-2Lines changed: 2 additions & 2 deletions
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.