Skip to content

Commit

Permalink
Merge pull request #207 from sjdemartini/fix-json-help-message
Browse files Browse the repository at this point in the history
Fix warning message json-format suggestion to proper syntax
  • Loading branch information
andrewbranch authored Sep 16, 2024
2 parents 035e965 + 66ada51 commit 9bca854
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/kind-ducks-compare.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@arethetypeswrong/cli": patch
---

Fix warning message json-format suggestion to use proper syntax
2 changes: 1 addition & 1 deletion packages/cli/src/render/typed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function typed(
const summaryTexts = Object.keys(grouped).map((kind) => {
const info = problemKindInfo[kind as core.ProblemKind];
const description = marked(
`${info.description}${info.details ? ` Use \`--json\` to see ${info.details}.` : ""} ${info.docsUrl}`,
`${info.description}${info.details ? ` Use \`-f json\` to see ${info.details}.` : ""} ${info.docsUrl}`,
);
return `${emoji ? `${info.emoji} ` : ""}${description}`;
});
Expand Down

0 comments on commit 9bca854

Please sign in to comment.