Skip to content

Commit 91781c2

Browse files
committed
add eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
1 parent b137251 commit 91781c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/execute.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function nodeExecutor(wasms: string[], outFolder: string, imports: Imports) {
4141
if (!importObject[moduleName]) {
4242
importObject[moduleName] = {};
4343
}
44-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
44+
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-explicit-any
4545
(importObject[moduleName] as any)[funcName] = (...args: any[]): any => {
4646
// notify that a default function has been called
4747
console.log(`Default stub called for ${moduleName}.${funcName}, args:`, args);

0 commit comments

Comments
 (0)