mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
Meta: Upgrade prettier to version 3.6.2
This version is installed by default nowadays and has slight differences from 3.3.3.
This commit is contained in:
parent
019c529c07
commit
583164e412
2
.github/workflows/lint-code.yml
vendored
2
.github/workflows/lint-code.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
|||
|
||||
- name: Install JS Dependencies
|
||||
shell: bash
|
||||
run: npm install -g prettier@3.3.3
|
||||
run: npm install -g prettier@3.6.2
|
||||
|
||||
- name: Lint
|
||||
run: ${{ github.workspace }}/Meta/lint-ci.sh
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ test("currying", () => {
|
|||
|
||||
test("with comma operator", () => {
|
||||
let foo, bar;
|
||||
(foo = bar), baz => {};
|
||||
((foo = bar), baz => {});
|
||||
expect(foo).toBe(undefined);
|
||||
expect(bar).toBe(undefined);
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user