chore(lint): satisfy biome checks

This commit is contained in:
Peter Steinberger
2026-01-13 07:53:25 +00:00
parent 676b64e8a3
commit 3a90335b5a
5 changed files with 42 additions and 31 deletions

View File

@@ -24,7 +24,8 @@ function ensureExperimentalWarningSuppressed(): void {
const nodeOptions = process.env.NODE_OPTIONS ?? "";
if (hasExperimentalWarningSuppressed(nodeOptions)) return;
process.env.CLAWDBOT_NODE_OPTIONS_READY = "1";
process.env.NODE_OPTIONS = `${nodeOptions} ${EXPERIMENTAL_WARNING_FLAG}`.trim();
process.env.NODE_OPTIONS =
`${nodeOptions} ${EXPERIMENTAL_WARNING_FLAG}`.trim();
const result = spawnSync(process.execPath, process.argv.slice(1), {
stdio: "inherit",
env: process.env,