Skip to content

Commit bed5434

Browse files
committed
chore: exclude non-null rule in decorator
1 parent 6bf1b70 commit bed5434

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: packages/logger/src/Logger.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ class Logger extends Utility implements ClassThatLogs {
280280
}
281281

282282
this.addContext(context);
283-
283+
284+
/* eslint-disable @typescript-eslint/no-non-null-assertion */
284285
const result = originalMethod!.apply(target, [ event, context, callback ]);
285286

286287
if (isClearStateEnabled) {

0 commit comments

Comments
 (0)