File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -505,7 +505,6 @@ namespace ts.formatting {
505
505
case SyntaxKind . CallExpression :
506
506
case SyntaxKind . NewExpression :
507
507
case SyntaxKind . VariableStatement :
508
- case SyntaxKind . VariableDeclaration :
509
508
case SyntaxKind . ExportAssignment :
510
509
case SyntaxKind . ReturnStatement :
511
510
case SyntaxKind . ConditionalExpression :
@@ -528,7 +527,6 @@ namespace ts.formatting {
528
527
case SyntaxKind . NamedImports :
529
528
case SyntaxKind . ExportSpecifier :
530
529
case SyntaxKind . ImportSpecifier :
531
- case SyntaxKind . PropertyAssignment :
532
530
case SyntaxKind . PropertyDeclaration :
533
531
return true ;
534
532
}
@@ -541,7 +539,6 @@ namespace ts.formatting {
541
539
switch ( parent . kind ) {
542
540
case SyntaxKind . VariableDeclaration :
543
541
case SyntaxKind . PropertyAssignment :
544
- case SyntaxKind . ObjectLiteralExpression :
545
542
if ( ! settings . indentMultiLineObjectLiteralBeginningOnBlankLine && sourceFile && childKind === SyntaxKind . ObjectLiteralExpression ) {
546
543
return rangeIsOnOneLine ( sourceFile , child ) ;
547
544
}
You can’t perform that action at this time.
0 commit comments