summaryrefslogtreecommitdiff
path: root/packages/cli/src/utils/BackgroundTerminalAnalyzer.ts
diff options
context:
space:
mode:
authorTaylor Mullen <[email protected]>2025-04-18 10:53:16 -0400
committerN. Taylor Mullen <[email protected]>2025-04-18 12:41:02 -0400
commite0339993aeae97e0ce77ffa430214b64007b9f6f (patch)
treed48320c7cc66076a42b42de8cee7ff9985474fdc /packages/cli/src/utils/BackgroundTerminalAnalyzer.ts
parentcb303514035440b1631964cad5093a4c80cd3e43 (diff)
Initial auto-fixing of linting errors.
- This is the result of runing `npm lint -- -fix`
Diffstat (limited to 'packages/cli/src/utils/BackgroundTerminalAnalyzer.ts')
-rw-r--r--packages/cli/src/utils/BackgroundTerminalAnalyzer.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/cli/src/utils/BackgroundTerminalAnalyzer.ts b/packages/cli/src/utils/BackgroundTerminalAnalyzer.ts
index 3e958d09..6028f9b1 100644
--- a/packages/cli/src/utils/BackgroundTerminalAnalyzer.ts
+++ b/packages/cli/src/utils/BackgroundTerminalAnalyzer.ts
@@ -75,7 +75,7 @@ export class BackgroundTerminalAnalyzer {
* @param command The command string that was executed (for context in prompts).
* @returns A promise resolving to the final analysis outcome.
*/
- public async analyze(
+ async analyze(
pid: ProcessHandle,
tempStdoutFilePath: string,
tempStderrFilePath: string,
@@ -91,8 +91,8 @@ export class BackgroundTerminalAnalyzer {
while (attempts < this.maxAttempts) {
attempts++;
- let currentStdout: string = '';
- let currentStderr: string = '';
+ let currentStdout = '';
+ let currentStderr = '';
// --- Robust File Reading ---
try {