Skip to content

Commit 1fcf4fb

Browse files
committed
lint ignore
1 parent a9d3c4d commit 1fcf4fb

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/tests/ts/fixture
77
/third_party
88
/tests/cpp/lit/**/*.json
9+
/tests/as/default.test.ts

src/core/execute.ts

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ function nodeExecutor(wasms: string[], outFolder: string, imports: Imports) {
4141
importObject[moduleName] = {};
4242
}
4343
if (!importObject[moduleName][funcName]) {
44+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
4445
importObject[moduleName][funcName] = (...args: any[]): any => {
4546
console.log(`Default stub called for ${moduleName}.${funcName}, args:`, args);
4647
return 0;

0 commit comments

Comments
 (0)