Skip to content

Commit f8be8e5

Browse files
committed
fix: add ESLint disable comments for unused parameters
- Add eslint-disable-next-line comments for placeholder method parameters - These parameters will be used when actual implementation is added 🤖 Generated with Claude Code (claude.ai/code)
1 parent 76b991c commit f8be8e5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

packages/indexer-common/src/performance/concurrent-reconciler.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,8 +290,11 @@ export class ConcurrentReconciler {
290290
*/
291291
private async reconcileDeploymentInternal(
292292
deployment: SubgraphDeploymentID,
293+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
293294
_activeAllocations: Allocation[],
295+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
294296
_network: Network,
297+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
295298
_operator: Operator,
296299
): Promise<void> {
297300
// Implementation would include actual reconciliation logic
@@ -336,10 +339,15 @@ export class ConcurrentReconciler {
336339
*/
337340
private async processAllocationDecision(
338341
decision: AllocationDecision,
342+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
339343
_activeAllocations: Allocation[],
344+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
340345
_epoch: number,
346+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
341347
_maxAllocationEpochs: number,
348+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
342349
_network: Network,
350+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
343351
_operator: Operator,
344352
): Promise<void> {
345353
const startTime = Date.now()

0 commit comments

Comments
 (0)