Skip to content

Commit 575b619

Browse files
authored
fix: Missing domain in error messages (#441)
Add blob/master/ for direct access to file
1 parent bf93cb4 commit 575b619

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/reporting/reportConversionResults.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ describe("reportConversionResults", () => {
243243
logger.stdout.write,
244244
`☠ Prettier plugins are missing from your configuration. ☠`,
245245
` We highly recommend running tslint-to-eslint-config --prettier to disable formatting ESLint rules.`,
246-
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.`,
246+
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.`,
247247
);
248248
});
249249

@@ -262,7 +262,7 @@ describe("reportConversionResults", () => {
262262
logger.stdout.write,
263263
`☠ Prettier plugins are missing from your configuration. ☠`,
264264
` We highly recommend running tslint-to-eslint-config --prettier to disable formatting ESLint rules.`,
265-
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.`,
265+
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.`,
266266
);
267267
});
268268
});

src/reporting/reportConversionResults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const logPrettierExtension = (logger: Logger) => {
9292
logger.stdout.write(chalk.red(` to disable formatting ESLint rules.${EOL}`));
9393
logger.stdout.write(
9494
chalk.red(
95-
` See https://github/typescript-eslint/tslint-to-eslint-config/docs/FAQs.md#should-i-use-prettier.${EOL}`,
95+
` See https://github.com/typescript-eslint/tslint-to-eslint-config/blob/master/docs/FAQs.md#should-i-use-prettier.${EOL}`,
9696
),
9797
);
9898
};

0 commit comments

Comments
 (0)