fix: lint errors in merge/resolveTask/confirm

This commit is contained in:
nrslib 2026-02-11 11:03:00 +09:00
parent 69bd77ab62
commit 15fc6875e2
3 changed files with 5 additions and 3 deletions

View File

@ -7,7 +7,7 @@
*/
import { writeFileSync } from 'node:fs';
import type { ArpeggioMergeMovementConfig, BatchResult, MergeFn } from './types.js';
import type { ArpeggioMergeMovementConfig, MergeFn } from './types.js';
/** Create a concat merge function with the given separator */
function createConcatMerge(separator: string): MergeFn {

View File

@ -6,7 +6,7 @@ import * as fs from 'node:fs';
import * as path from 'node:path';
import { loadGlobalConfig } from '../../../infra/config/index.js';
import { type TaskInfo, createSharedClone, summarizeTaskName, getCurrentBranch } from '../../../infra/task/index.js';
import { info, withProgress } from '../../../shared/ui/index.js';
import { withProgress } from '../../../shared/ui/index.js';
import { getTaskSlugFromTaskDir } from '../../../shared/utils/taskPaths.js';
export interface ResolvedTaskExecution {

View File

@ -14,7 +14,9 @@ function pauseStdinSafely(): void {
if (process.stdin.readable && !process.stdin.destroyed) {
process.stdin.pause();
}
} catch {}
} catch {
return;
}
}
/**