diff options
author | Kenta Moriuchi <moriken@kimamass.com> | 2024-11-05 02:17:11 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-04 12:17:11 -0500 |
commit | fb1d33a7111e45e9b414cfe922a5db5ee4daf3ea (patch) | |
tree | fc2c3d797fa7e4d5a56c99b94a0aa1a823fe29e0 /cli/bench | |
parent | d95f06f20b97839d9a2aaeb590f4ed30b6383b0f (diff) |
chore: update dlint to v0.68.0 for internal (#26711)
Diffstat (limited to 'cli/bench')
-rw-r--r-- | cli/bench/encode_into.js | 3 | ||||
-rw-r--r-- | cli/bench/getrandom.js | 3 | ||||
-rw-r--r-- | cli/bench/op_now.js | 3 | ||||
-rw-r--r-- | cli/bench/secure_curves.js | 3 | ||||
-rw-r--r-- | cli/bench/tty.js | 3 | ||||
-rw-r--r-- | cli/bench/url_parse.js | 3 | ||||
-rw-r--r-- | cli/bench/write_file.js | 3 |
7 files changed, 7 insertions, 14 deletions
diff --git a/cli/bench/encode_into.js b/cli/bench/encode_into.js index 11f5a56d9..ab5e11b04 100644 --- a/cli/bench/encode_into.js +++ b/cli/bench/encode_into.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals let [total, count] = typeof Deno !== "undefined" ? Deno.args diff --git a/cli/bench/getrandom.js b/cli/bench/getrandom.js index 3c3ec4aa1..fe99bbcbd 100644 --- a/cli/bench/getrandom.js +++ b/cli/bench/getrandom.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals let [total, count] = typeof Deno !== "undefined" ? Deno.args diff --git a/cli/bench/op_now.js b/cli/bench/op_now.js index bcc3ea3c5..7c1427c80 100644 --- a/cli/bench/op_now.js +++ b/cli/bench/op_now.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals const queueMicrotask = globalThis.queueMicrotask || process.nextTick; let [total, count] = typeof Deno !== "undefined" diff --git a/cli/bench/secure_curves.js b/cli/bench/secure_curves.js index 02d248b23..912b75ccc 100644 --- a/cli/bench/secure_curves.js +++ b/cli/bench/secure_curves.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals let [total, count] = typeof Deno !== "undefined" ? Deno.args diff --git a/cli/bench/tty.js b/cli/bench/tty.js index 248a90113..e494e76af 100644 --- a/cli/bench/tty.js +++ b/cli/bench/tty.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals const queueMicrotask = globalThis.queueMicrotask || process.nextTick; let [total, count] = typeof Deno !== "undefined" diff --git a/cli/bench/url_parse.js b/cli/bench/url_parse.js index 367cf73f4..9cb0045f6 100644 --- a/cli/bench/url_parse.js +++ b/cli/bench/url_parse.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals const queueMicrotask = globalThis.queueMicrotask || process.nextTick; let [total, count] = typeof Deno !== "undefined" diff --git a/cli/bench/write_file.js b/cli/bench/write_file.js index 104a23a8d..747503ce2 100644 --- a/cli/bench/write_file.js +++ b/cli/bench/write_file.js @@ -1,6 +1,5 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. - -// deno-lint-ignore-file no-console +// deno-lint-ignore-file no-console no-process-globals const queueMicrotask = globalThis.queueMicrotask || process.nextTick; let [total, count] = typeof Deno !== "undefined" |