From 03a5d1eefb4bfd1679e9fd36a6b5f54b99c25429 Mon Sep 17 00:00:00 2001 From: gsxdsm Date: Sat, 13 Jun 2026 00:50:08 -0700 Subject: [PATCH] fix(review): drop redundant /* global */ comments (eslint no-redeclare) Co-Authored-By: Claude Opus 4.8 --- scripts/__tests__/run-vitest-watchdog.test.mjs | 1 - scripts/lib/run-vitest-watchdog.mjs | 1 - 2 files changed, 2 deletions(-) diff --git a/scripts/__tests__/run-vitest-watchdog.test.mjs b/scripts/__tests__/run-vitest-watchdog.test.mjs index b6077416fe..eaefc835f8 100644 --- a/scripts/__tests__/run-vitest-watchdog.test.mjs +++ b/scripts/__tests__/run-vitest-watchdog.test.mjs @@ -1,4 +1,3 @@ -/* global clearTimeout, setTimeout */ import { test } from "node:test"; import assert from "node:assert/strict"; import { EventEmitter } from "node:events"; diff --git a/scripts/lib/run-vitest-watchdog.mjs b/scripts/lib/run-vitest-watchdog.mjs index d3585d3125..fbd4b54fae 100644 --- a/scripts/lib/run-vitest-watchdog.mjs +++ b/scripts/lib/run-vitest-watchdog.mjs @@ -1,4 +1,3 @@ -/* global clearInterval, clearTimeout, console, process, setInterval, setTimeout */ /** * Shared, bounded test-invocation runner (the L2 watchdog layer).