Skip to content

Commit 583164e

Browse files
committed
Meta: Upgrade prettier to version 3.6.2
This version is installed by default nowadays and has slight differences from 3.3.3.
1 parent 019c529 commit 583164e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
2929
- name: Install JS Dependencies
3030
shell: bash
31-
run: npm install -g prettier@3.3.3
31+
run: npm install -g prettier@3.6.2
3232

3333
- name: Lint
3434
run: ${{ github.workspace }}/Meta/lint-ci.sh

Libraries/LibJS/Tests/functions/arrow-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ test("currying", () => {
9090

9191
test("with comma operator", () => {
9292
let foo, bar;
93-
(foo = bar), baz => {};
93+
((foo = bar), baz => {});
9494
expect(foo).toBe(undefined);
9595
expect(bar).toBe(undefined);
9696
});

0 commit comments

Comments
 (0)