Meta: Increase the line length enforced by prettier to 120

This matches our coding style recommendation in CodingStyle.md, and
matches our python formatting.
This commit is contained in:
Timothy Flynn
2025-10-31 11:50:48 -04:00
committed by Tim Flynn
parent b7ecdad685
commit 019c529c07
Notes: github-actions[bot] 2025-10-31 23:56:51 +00:00
178 changed files with 774 additions and 2019 deletions

View File

@@ -188,10 +188,7 @@ describe("errors", () => {
get() {},
value: 9,
});
}).toThrowWithMessage(
TypeError,
"Accessor property descriptor cannot specify a value or writable key"
);
}).toThrowWithMessage(TypeError, "Accessor property descriptor cannot specify a value or writable key");
});
test("cannot define 'value' and 'set' in the same descriptor", () => {
@@ -202,10 +199,7 @@ describe("errors", () => {
set() {},
writable: true,
});
}).toThrowWithMessage(
TypeError,
"Accessor property descriptor cannot specify a value or writable key"
);
}).toThrowWithMessage(TypeError, "Accessor property descriptor cannot specify a value or writable key");
});
test("redefine non-configurable accessor", () => {