Skip to content

Commit 5b75147

Browse files
authored
fix: Fix log saying eslint is ran when prettier is ran (#2114)
1 parent 47abf94 commit 5b75147

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/strong-poems-sing.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-t3-app": patch
3+
---
4+
5+
Fix log saying eslint is ran when prettier is ran

cli/src/helpers/format.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const formatProject = async ({
1717
eslint: boolean;
1818
biome: boolean;
1919
}) => {
20-
logger.info(`Formatting project with ${eslint ? "eslint" : "biome"}...`);
20+
logger.info(`Formatting project with ${eslint ? "prettier" : "biome"}...`);
2121
const spinner = ora("Running format command\n").start();
2222

2323
if (eslint) {

0 commit comments

Comments
 (0)