chore: migrate to oxlint and oxfmt

Co-authored-by: Christoph Nakazawa <christoph.pojer@gmail.com>
This commit is contained in:
Peter Steinberger
2026-01-14 14:31:43 +00:00
parent 912ebffc63
commit c379191f80
1480 changed files with 28608 additions and 43547 deletions

View File

@@ -45,8 +45,7 @@ export async function removeChannelConfigWizard(
if (channel === "done") return next;
const label =
listChatChannels().find((meta) => meta.id === channel)?.label ?? channel;
const label = listChatChannels().find((meta) => meta.id === channel)?.label ?? channel;
const confirmed = guardCancel(
await confirm({
message: `Delete ${label} configuration from ${CONFIG_PATH_CLAWDBOT}?`,
@@ -66,10 +65,9 @@ export async function removeChannelConfigWizard(
};
note(
[
`${label} removed from config.`,
"Note: credentials/sessions on disk are unchanged.",
].join("\n"),
[`${label} removed from config.`, "Note: credentials/sessions on disk are unchanged."].join(
"\n",
),
"Channel removed",
);
}