refactor: make TTY detection explicit per review feedback (#218)

🤖 Generated with assistance of OhMyOpenCode (https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-25 15:45:28 +09:00
committed by GitHub
parent 2bad1b5c95
commit 0f03f5aad4

View File

@@ -11,7 +11,7 @@ export function isNonInteractive(): boolean {
return true return true
} }
if (!process.stdout.isTTY) { if (process.stdout.isTTY !== true) {
return true return true
} }