File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -332,6 +332,7 @@ namespace ts {
332332 const categoryColor = getCategoryFormat ( diagnostic . category ) ;
333333 const category = DiagnosticCategory [ diagnostic . category ] . toLowerCase ( ) ;
334334 output += `${ formatAndReset ( category , categoryColor ) } TS${ diagnostic . code } : ${ flattenDiagnosticMessageText ( diagnostic . messageText , sys . newLine ) } ` ;
335+ output += sys . newLine ;
335336 }
336337 return output ;
337338 }
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ namespace ts {
6161 }
6262
6363 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 ) ;
6565 }
6666
6767 function reportWatchDiagnostic ( diagnostic : Diagnostic ) {
You can’t perform that action at this time.
0 commit comments