mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:07:34 +00:00
Base+LibJS+LibWeb: Make prettier clean
Also use "// prettier-ignore" comments where necessary rather than excluding whole files (via .prettierignore).
This commit is contained in:
parent
76239f89c2
commit
5122f98198
24 changed files with 100 additions and 79 deletions
|
@ -302,7 +302,7 @@ class ExpectationError extends Error {
|
|||
// Test for syntax errors; target must be a string
|
||||
toEval() {
|
||||
this.__expect(typeof this.target === "string");
|
||||
const success = canParseSource(this.target)
|
||||
const success = canParseSource(this.target);
|
||||
this.__expect(this.inverted ? !success : success);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue