diff options
author | Yusuke Tanaka <yusuktan@maguro.dev> | 2020-08-27 18:14:01 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-27 11:14:01 +0200 |
commit | 59428e3d8a986f99204d33fafcdcf201d3fc55c3 (patch) | |
tree | a6cff342f3b2520656d2d724e4a18818c320f745 | |
parent | 58bcb9880b5e9c85cfc67f7aa6601fd96822a580 (diff) |
fix(std/wasi): ignore lint errors (#7197)
-rw-r--r-- | std/wasi/snapshot_preview1.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/wasi/snapshot_preview1.ts b/std/wasi/snapshot_preview1.ts index f51eee3c6..f62d93a94 100644 --- a/std/wasi/snapshot_preview1.ts +++ b/std/wasi/snapshot_preview1.ts @@ -228,6 +228,7 @@ const clock_time_monotonic = function (): bigint { const clock_time_process = clock_time_monotonic; const clock_time_thread = clock_time_monotonic; +// deno-lint-ignore ban-types function syscall(target: Function): Function { return function (...args: unknown[]): number { try { @@ -298,6 +299,7 @@ export default class Context { // deno-lint-ignore no-explicit-any fds: any[]; + // deno-lint-ignore ban-types exports: Record<string, Function>; constructor(options: ContextOptions) { |