Skip to content

Commit 0a41d02

Browse files
committed
lint fixes
1 parent 1cda9a7 commit 0a41d02

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/cli/src/utils/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,13 @@ export async function loadConfigFromFile<T>(configPath: string): Promise<Partial
7171
if (!configPath) {
7272
return {};
7373
}
74-
74+
7575
const jiti = createJiti(import.meta.url);
7676

7777
try {
7878
// need to use fileURLToPath here for windows support (prefixes with file://)
7979
const fileUrl = url.pathToFileURL(configPath);
80-
return (await jiti.import(fileUrl.toString(), { default: true}));
80+
return await jiti.import(fileUrl.toString(), { default: true });
8181
} catch (err) {
8282
throw new Error(`Unable to load config file '${chalk.white(configPath)}'`, { cause: err });
8383
}

0 commit comments

Comments
 (0)