chore(format): apply prettier fixes for validate gate

This commit is contained in:
Tam Nhu Tran
2026-02-12 15:20:09 +07:00
parent b98335c162
commit 9585f0664d
2 changed files with 3 additions and 7 deletions
+1 -4
View File
@@ -25,10 +25,7 @@ interface ShellCompletionInstallResult {
}
interface ShellCompletionInstallerLike {
install(
shell: ShellTarget,
options: { force: boolean }
): ShellCompletionInstallResult;
install(shell: ShellTarget, options: { force: boolean }): ShellCompletionInstallResult;
}
export function parseShellCompletionArgs(args: string[]): ShellCompletionParsedArgs {
@@ -94,9 +94,8 @@ export async function runImageAnalysisCheck(results: HealthCheck): Promise<void>
* Fix image analysis configuration issues
*/
export async function fixImageAnalysisConfig(): Promise<boolean> {
const { updateUnifiedConfig, loadOrCreateUnifiedConfig } = await import(
'../../config/unified-config-loader'
);
const { updateUnifiedConfig, loadOrCreateUnifiedConfig } =
await import('../../config/unified-config-loader');
const config = loadOrCreateUnifiedConfig();
let fixed = false;