fix: keep branch follower json concise by default

This commit is contained in:
Codex
2026-07-03 21:02:01 +00:00
parent 61fa9aba65
commit a96db84b4a
-2
View File
@@ -142,7 +142,6 @@ function parseOptions(args: string[]): ParsedOptions {
options.full = true;
} else if (arg === "--raw" || arg === "--json") {
options.raw = true;
options.full = true;
options.output = "json";
} else if (arg === "--record-state") {
options.recordState = true;
@@ -154,7 +153,6 @@ function parseOptions(args: string[]): ParsedOptions {
options.output = value === "wide" || value === "text" ? "human" : value;
if (value === "json" || value === "yaml") {
options.raw = true;
options.full = true;
}
} else if (arg === "--limit") {
options.limit = positiveInt(valueOption(rest, ++index, arg), arg);