Skip to content

Commit 035ece4

Browse files
committed
Fix formatting
1 parent 1836fa3 commit 035ece4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/utils/setup.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CancellationToken, LogOutputChannel } from "vscode";
22
import * as z from "zod/v4-mini";
33

4-
import {LOCALSTACK_DOCKER_IMAGE_NAME} from "../constants.ts";
4+
import { LOCALSTACK_DOCKER_IMAGE_NAME } from "../constants.ts";
55

66
import { checkIsAuthenticated } from "./authenticate.ts";
77
import { checkIsProfileConfigured } from "./configure-aws.ts";
@@ -49,7 +49,9 @@ async function getDockerImageSemverVersion(
4949
outputChannel: LogOutputChannel,
5050
): Promise<string | undefined> {
5151
try {
52-
const { stdout } = await exec(`docker inspect ${LOCALSTACK_DOCKER_IMAGE_NAME}`);
52+
const { stdout } = await exec(
53+
`docker inspect ${LOCALSTACK_DOCKER_IMAGE_NAME}`,
54+
);
5355
const data: unknown = JSON.parse(stdout);
5456
const parsed = InspectSchema.safeParse(data);
5557
if (!parsed.success) {

0 commit comments

Comments
 (0)