We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bed464f commit 5ed1cf7Copy full SHA for 5ed1cf7
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