Skip to content

Commit 5ed1cf7

Browse files
committed
add ignore to lint
1 parent bed464f commit 5ed1cf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/system/decorators/serialize.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export function serialize(): (target: any, key: string, descriptor: PropertyDesc
2222
}
2323

2424
let promise: Promise<any> | undefined = this[serializeKey];
25-
// eslint-disable-next-line no-return-await, @typescript-eslint/no-unsafe-return
25+
// eslint-disable-next-line no-return-await, @typescript-eslint/no-unsafe-return, @typescript-eslint/return-await
2626
const run = async () => await fn.apply(this, args);
2727
if (promise == null) {
2828
promise = run();

0 commit comments

Comments
 (0)