summaryrefslogtreecommitdiff
path: root/cli/bench
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-06-05 00:09:29 +0100
committerGitHub <noreply@github.com>2024-06-05 01:09:29 +0200
commiteb218c0f3344eabfa8abf4c7ecac148f14fc6294 (patch)
tree10a8f125b79830e02e568e1cf7b0c63976616fb5 /cli/bench
parent29a075de2b625e1c893f6fad163a6d6937894a7a (diff)
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 <hello@lcas.dev> Co-authored-by: David Sherret <dsherret@users.noreply.github.com>
Diffstat (limited to 'cli/bench')
-rw-r--r--cli/bench/deno_common.js1
1 files changed, 1 insertions, 0 deletions
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);
});
}