From eb218c0f3344eabfa8abf4c7ecac148f14fc6294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 5 Jun 2024 00:09:29 +0100 Subject: chore: upgrade dlint to 0.60.0 (#24041) Factoring out `dlint` upgrade from https://github.com/denoland/deno/pull/24034 as it requires us to change the lint step on mac to use ARM runners. --------- Co-authored-by: Luca Casonato Co-authored-by: David Sherret --- cli/bench/deno_common.js | 1 + 1 file changed, 1 insertion(+) (limited to 'cli/bench/deno_common.js') diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index 554015c6c..ba88c79ca 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -46,6 +46,7 @@ Deno.bench("b64_rt_short", { n: 1e6 }, () => { const buf = new Uint8Array(100); const file = Deno.openSync("/dev/zero"); Deno.bench("read_zero", { n: 5e5 }, () => { + // deno-lint-ignore no-deprecated-deno-api Deno.readSync(file.rid, buf); }); } -- cgit v1.2.3