style: formatting

This commit is contained in:
2026-07-18 07:52:01 +05:00
parent 81f5be4cd3
commit 4c14d0ae25
13 changed files with 41 additions and 36 deletions
+1 -3
View File
@@ -23,9 +23,7 @@ export function parseProjectConfig(
data = yaml.load(content);
} catch (error) {
const detail = error instanceof Error ? error.message : "invalid YAML";
return err(
appError(AppErrorVariant.INVALID_PROJECT_CONFIG, { detail }),
);
return err(appError(AppErrorVariant.INVALID_PROJECT_CONFIG, { detail }));
}
if (data === null || data === undefined) {