Skip to content

Commit

Permalink
fix(std/wasi): ignore lint errors (denoland#7197)
Browse files Browse the repository at this point in the history
  • Loading branch information
magurotuna committed Aug 27, 2020
1 parent 58bcb98 commit 59428e3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions std/wasi/snapshot_preview1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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) {
Expand Down

0 comments on commit 59428e3

Please sign in to comment.