We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f394740 commit 128b31bCopy full SHA for 128b31b
src/system/decorators/serialize.ts
@@ -22,7 +22,7 @@ export function serialize(): (target: any, key: string, descriptor: PropertyDesc
22
}
23
24
let promise: Promise<any> | undefined = this[serializeKey];
25
- // eslint-disable-next-line no-return-await, @typescript-eslint/no-unsafe-return
+ // eslint-disable-next-line no-return-await, @typescript-eslint/no-unsafe-return, @typescript-eslint/return-await
26
const run = async () => await fn.apply(this, args);
27
if (promise == null) {
28
promise = run();
0 commit comments