File tree 2 files changed +2
-1
lines changed
2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -332,6 +332,7 @@ namespace ts {
332
332
const categoryColor = getCategoryFormat ( diagnostic . category ) ;
333
333
const category = DiagnosticCategory [ diagnostic . category ] . toLowerCase ( ) ;
334
334
output += `${ formatAndReset ( category , categoryColor ) } TS${ diagnostic . code } : ${ flattenDiagnosticMessageText ( diagnostic . messageText , sys . newLine ) } ` ;
335
+ output += sys . newLine ;
335
336
}
336
337
return output ;
337
338
}
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ namespace ts {
61
61
}
62
62
63
63
function reportDiagnosticWithColorAndContext ( diagnostic : Diagnostic , host : FormatDiagnosticsHost ) : void {
64
- sys . write ( ts . formatDiagnosticsWithColorAndContext ( [ diagnostic ] , host ) + sys . newLine + sys . newLine ) ;
64
+ sys . write ( ts . formatDiagnosticsWithColorAndContext ( [ diagnostic ] , host ) + sys . newLine ) ;
65
65
}
66
66
67
67
function reportWatchDiagnostic ( diagnostic : Diagnostic ) {
You can’t perform that action at this time.
0 commit comments