Add rules from eslint's recommended set that triggered good lints (#50422)

This commit is contained in:
Jake Bailey
2022-09-19 16:20:55 -07:00
committed by GitHub
parent a11c41621b
commit 16156b1baf
34 changed files with 54 additions and 48 deletions

View File

@@ -431,7 +431,7 @@ namespace ts {
function getHeader(sys: System, message: string) {
const colors = createColors(sys);
const header: string[] = [];
const terminalWidth = sys.getWidthOfTerminal?.() ?? 0;;
const terminalWidth = sys.getWidthOfTerminal?.() ?? 0;
const tsIconLength = 5;
const tsIconFirstLine = colors.blueBackground(padLeft("", tsIconLength));