chore: format

This commit is contained in:
Peter Steinberger
2026-01-09 16:55:51 +01:00
parent fd9e2d3def
commit be48233bc4
4 changed files with 29 additions and 16 deletions

View File

@@ -81,13 +81,19 @@ export function resetConfigOverrides(): void {
overrides = {};
}
export function setConfigOverride(pathRaw: string, value: unknown): {
export function setConfigOverride(
pathRaw: string,
value: unknown,
): {
ok: boolean;
error?: string;
} {
const path = parsePath(pathRaw);
if (!path) {
return { ok: false, error: "Invalid path. Use dot notation (e.g. foo.bar)." };
return {
ok: false,
error: "Invalid path. Use dot notation (e.g. foo.bar).",
};
}
setOverrideAtPath(overrides, path, value);
return { ok: true };