Skip to content

Commit 226dab8

Browse files
committed
fix: lint
1 parent 95afaa1 commit 226dab8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/eslint-plugin-isaacscript/scripts/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function formatWithPrettier(
1313
): Promise<string> {
1414
const prettierConfig = await prettier.resolveConfig(REPO_ROOT);
1515

16-
return prettier.format(text, {
16+
return await prettier.format(text, {
1717
parser: language,
1818
...prettierConfig,
1919
});

packages/isaacscript-cli/src/commands/init/getAuthorName.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function getAuthorName(
1515
return undefined;
1616
}
1717

18-
return getNewAuthorName();
18+
return await getNewAuthorName();
1919
}
2020

2121
async function getNewAuthorName(): Promise<string> {

0 commit comments

Comments
 (0)