chore: apply extension lint cleanups

This commit is contained in:
Peter Steinberger
2026-04-23 05:28:17 +01:00
parent 596b88986d
commit 0b0662b1c9
51 changed files with 141 additions and 155 deletions

View File

@@ -189,7 +189,7 @@ function readNativeCompactionCompletion(
function resolveCompactionWaitTimeoutMs(): number {
const raw = process.env.OPENCLAW_CODEX_COMPACTION_WAIT_TIMEOUT_MS?.trim();
const parsed = raw ? Number.parseInt(raw, 10) : NaN;
const parsed = raw ? Number.parseInt(raw, 10) : Number.NaN;
if (Number.isFinite(parsed) && parsed > 0) {
return parsed;
}