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 89ea636f99
commit a39cfd9d75
+1 -1
View File
@@ -11,7 +11,7 @@ export function isNonInteractive(): boolean {
return true
}
if (!process.stdout.isTTY) {
if (process.stdout.isTTY !== true) {
return true
}