mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 01:51:24 +00:00
chore: Enable "curly" rule to avoid single-statement if confusion/errors.
This commit is contained in:
@@ -5,12 +5,18 @@ import { isVerbose, isYes } from "../globals.js";
|
||||
|
||||
export async function promptYesNo(question: string, defaultYes = false): Promise<boolean> {
|
||||
// Simple Y/N prompt honoring global --yes and verbosity flags.
|
||||
if (isVerbose() && isYes()) return true; // redundant guard when both flags set
|
||||
if (isYes()) return true;
|
||||
if (isVerbose() && isYes()) {
|
||||
return true;
|
||||
} // redundant guard when both flags set
|
||||
if (isYes()) {
|
||||
return true;
|
||||
}
|
||||
const rl = readline.createInterface({ input, output });
|
||||
const suffix = defaultYes ? " [Y/n] " : " [y/N] ";
|
||||
const answer = (await rl.question(`${question}${suffix}`)).trim().toLowerCase();
|
||||
rl.close();
|
||||
if (!answer) return defaultYes;
|
||||
if (!answer) {
|
||||
return defaultYes;
|
||||
}
|
||||
return answer.startsWith("y");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user