Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/reporting/reportConversionResults.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ describe("reportConversionResults", () => {
logger.stdout.write,
`☠ Prettier plugins are missing from your configuration. ☠`,
` We highly recommend running tslint-to-eslint-config --prettier to disable formatting ESLint rules.`,
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.`,
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.`,
);
});

Expand All @@ -262,7 +262,7 @@ describe("reportConversionResults", () => {
logger.stdout.write,
`☠ Prettier plugins are missing from your configuration. ☠`,
` We highly recommend running tslint-to-eslint-config --prettier to disable formatting ESLint rules.`,
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.`,
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.`,
);
});
});
2 changes: 1 addition & 1 deletion src/reporting/reportConversionResults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const logPrettierExtension = (logger: Logger) => {
logger.stdout.write(chalk.red(` to disable formatting ESLint rules.${EOL}`));
logger.stdout.write(
chalk.red(
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.${EOL}`,
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.${EOL}`,
),
);
};