From f8f33bc833f971b1cf2a88674f1d6ccd52d9e560 Mon Sep 17 00:00:00 2001 From: Johannes Rieken Date: Fri, 26 Aug 2016 11:14:02 +0200 Subject: [PATCH] align formatting options #3 --- src/languageFeatures.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 };