fix: linter cleanup on flow service implementations

Minor fixes from linter: readonly modifiers, unused parameter prefixes,
type narrowing in graph-rag BFS traversal and edge scoring.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
elpresidank 2026-04-05 22:52:40 -05:00
parent b6536eca38
commit 0042f9259c
7 changed files with 21 additions and 19 deletions

View file

@ -66,10 +66,10 @@ function topicName(name: string): string {
// ---------- Manager ----------
export class DispatcherManager {
private pubsub: PubSubBackend;
private readonly pubsub: PubSubBackend;
private requestors = new Map<string, RequestResponse<unknown, unknown>>();
constructor(private readonly config: GatewayConfig) {
constructor(config: GatewayConfig) {
this.pubsub = new NatsBackend(config.natsUrl ?? "nats://localhost:4222");
}