Skip to content

Commit 4b11604

Browse files
committed
fix: Disable unsafe assignment lint rule for agent call
1 parent 884074f commit 4b11604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/agent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ Please correct the parameters and try again.`;
493493
// Parameters are valid, proceed with execution
494494
try {
495495
logger.info(`Orchestrator executing capability: ${capabilityName}`, { params: validationResult.data });
496-
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument
496+
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/no-unsafe-argument, @typescript-eslint/no-unsafe-assignment
497497
const capabilityResult: unknown = await capabilityFunc(capabilityContext, validationResult.data as any);
498498

499499
agentState.steps.push({

0 commit comments

Comments
 (0)