align formatting options #3

This commit is contained in:
Johannes Rieken 2016-08-26 11:14:02 +02:00
parent 867476531d
commit f8f33bc833

View file

@ -474,13 +474,13 @@ export abstract class FormatHelper extends Adapter {
IndentStyle: ts.IndentStyle.Smart, IndentStyle: ts.IndentStyle.Smart,
NewLineCharacter: '\n', NewLineCharacter: '\n',
InsertSpaceAfterCommaDelimiter: true, InsertSpaceAfterCommaDelimiter: true,
InsertSpaceAfterFunctionKeywordForAnonymousFunctions: false, InsertSpaceAfterSemicolonInForStatements: true,
InsertSpaceAfterKeywordsInControlFlowStatements: false,
InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: true,
InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: true,
InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: true,
InsertSpaceAfterSemicolonInForStatements: false,
InsertSpaceBeforeAndAfterBinaryOperators: true, InsertSpaceBeforeAndAfterBinaryOperators: true,
InsertSpaceAfterKeywordsInControlFlowStatements: true,
InsertSpaceAfterFunctionKeywordForAnonymousFunctions: true,
InsertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis: false,
InsertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets: false,
InsertSpaceAfterOpeningAndBeforeClosingTemplateStringBraces: false,
PlaceOpenBraceOnNewLineForControlBlocks: false, PlaceOpenBraceOnNewLineForControlBlocks: false,
PlaceOpenBraceOnNewLineForFunctions: false PlaceOpenBraceOnNewLineForFunctions: false
}; };