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

@@ -1,11 +1,5 @@
import {
getHealthSnapshot,
type HealthSummary,
} from "../../commands/health.js";
import {
CONFIG_PATH_CLAWDBOT,
STATE_DIR_CLAWDBOT,
} from "../../config/config.js";
import { getHealthSnapshot, type HealthSummary } from "../../commands/health.js";
import { CONFIG_PATH_CLAWDBOT, STATE_DIR_CLAWDBOT } from "../../config/config.js";
import { listSystemPresence } from "../../infra/system-presence.js";
import type { Snapshot } from "../protocol/index.js";
@@ -48,9 +42,7 @@ export function getPresenceVersion(): number {
return presenceVersion;
}
export function setBroadcastHealthUpdate(
fn: ((snap: HealthSummary) => void) | null,
) {
export function setBroadcastHealthUpdate(fn: ((snap: HealthSummary) => void) | null) {
broadcastHealthUpdate = fn;
}