diff --git a/src/languageFeatures.ts b/src/languageFeatures.ts index 8adae161..e7f3013c 100644 --- a/src/languageFeatures.ts +++ b/src/languageFeatures.ts @@ -474,13 +474,13 @@ export abstract class FormatHelper extends Adapter { IndentStyle: ts.IndentStyle.Smart, NewLineCharacter: '\n', InsertSpaceAfterCommaDelimiter: true, - InsertSpaceAfterFunctionKeywordForAnonymousFunctions: false, - InsertSpaceAfterKeywordsInControlFlowStatements: false, - InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: true, - InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: true, - InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: true, - InsertSpaceAfterSemicolonInForStatements: false, + InsertSpaceAfterSemicolonInForStatements: true, InsertSpaceBeforeAndAfterBinaryOperators: true, + InsertSpaceAfterKeywordsInControlFlowStatements: true, + InsertSpaceAfterFunctionKeywordForAnonymousFunctions: true, + InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: false, + InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: false, + InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: false, PlaceOpenBraceOnNewLineForControlBlocks: false, PlaceOpenBraceOnNewLineForFunctions: false };