From c5b8a0783e2e70e21719cfbdf63789712c49c709 Mon Sep 17 00:00:00 2001 From: Affaan Mustafa Date: Thu, 12 Mar 2026 15:35:12 -0700 Subject: [PATCH] fix: resolve lint regression in plan parsing --- scripts/lib/orchestration-session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/orchestration-session.js b/scripts/lib/orchestration-session.js index 0f0f60d6..292c7010 100644 --- a/scripts/lib/orchestration-session.js +++ b/scripts/lib/orchestration-session.js @@ -275,7 +275,7 @@ function readPlanConfig(absoluteTarget) { try { config = JSON.parse(fs.readFileSync(absoluteTarget, 'utf8')); - } catch (error) { + } catch (_error) { throw new Error(`Invalid orchestration plan JSON: ${absoluteTarget}`); }