mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-18 23:17:27 +00:00
chore: Enable more lint rules, disable some that trigger a lot. Will clean up later.
This commit is contained in:
@@ -29,7 +29,7 @@ export function listBoundAccountIds(cfg: OpenClawConfig, channelId: string): str
|
||||
if (!accountId || accountId === "*") continue;
|
||||
ids.add(normalizeAccountId(accountId));
|
||||
}
|
||||
return Array.from(ids).sort((a, b) => a.localeCompare(b));
|
||||
return Array.from(ids).toSorted((a, b) => a.localeCompare(b));
|
||||
}
|
||||
|
||||
export function resolveDefaultAgentBoundAccountId(
|
||||
|
||||
Reference in New Issue
Block a user