chore: update dlint to 0.73.0 for CI (#28169)

This commit is contained in:
Kenta Moriuchi 2025-02-19 23:07:01 +09:00 committed by Ryan Dahl
parent 84ebdad8a0
commit 17ebadf20f
8 changed files with 9 additions and 9 deletions

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
let [total, count] = typeof Deno !== "undefined"
? Deno.args

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
let [total, count] = typeof Deno !== "undefined"
? Deno.args

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
const queueMicrotask = globalThis.queueMicrotask || process.nextTick;
let [total, count] = typeof Deno !== "undefined"

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
let [total, count] = typeof Deno !== "undefined"
? Deno.args

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
const queueMicrotask = globalThis.queueMicrotask || process.nextTick;
let [total, count] = typeof Deno !== "undefined"

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
const queueMicrotask = globalThis.queueMicrotask || process.nextTick;
let [total, count] = typeof Deno !== "undefined"

View file

@ -1,5 +1,5 @@
// Copyright 2018-2025 the Deno authors. MIT license.
// deno-lint-ignore-file no-console no-process-globals
// deno-lint-ignore-file no-console no-process-global
const queueMicrotask = globalThis.queueMicrotask || process.nextTick;
let [total, count] = typeof Deno !== "undefined"

View file

@ -19,7 +19,7 @@ export { parse as parseJSONC } from "@std/jsonc/parse";
// [toolName] --version output
const versions = {
"dlint": "dlint 0.68.0",
"dlint": "dlint 0.73.0",
};
const compressed = new Set(["ld64.lld", "rcodesign"]);
@ -186,7 +186,7 @@ export function getPrebuiltToolPath(toolName) {
return join(PREBUILT_TOOL_DIR, toolName + executableSuffix);
}
const commitId = "7a3a6fee951b3381c59aa4c907274957f324ce8c";
const commitId = "aa25a37b0f2bdadc83e99e625e8a074d56d1febd";
const downloadUrl =
`https://raw.githubusercontent.com/denoland/deno_third_party/${commitId}/prebuilt/${platformDirName}`;