style: normalize indentation to 2 spaces

main
Peter Steinberger 2025-11-26 00:15:10 +01:00
parent e107f115e2
commit 8a01dc7f4c
2 changed files with 71 additions and 71 deletions

View File

@ -20,7 +20,7 @@ export type SessionConfig = {
sendSystemOnce?: boolean; sendSystemOnce?: boolean;
sessionIntro?: string; sessionIntro?: string;
typingIntervalSeconds?: number; typingIntervalSeconds?: number;
}; };
export type LoggingConfig = { export type LoggingConfig = {
level?: "silent" | "fatal" | "error" | "warn" | "info" | "debug" | "trace"; level?: "silent" | "fatal" | "error" | "warn" | "info" | "debug" | "trace";
@ -50,7 +50,7 @@ export type WarelayConfig = {
mediaMaxMb?: number; // optional cap for outbound media (default 5MB) mediaMaxMb?: number; // optional cap for outbound media (default 5MB)
typingIntervalSeconds?: number; // how often to refresh typing indicator while command runs typingIntervalSeconds?: number; // how often to refresh typing indicator while command runs
}; };
}; };
}; };
export const CONFIG_PATH = path.join(os.homedir(), ".warelay", "warelay.json"); export const CONFIG_PATH = path.join(os.homedir(), ".warelay", "warelay.json");