@@ -198,6 +198,8 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
198198 public bool WhitespaceBeforeOpenParen { get ; set ; }
199199 public bool WhitespaceAroundOperator { get ; set ; }
200200 public bool WhitespaceAfterSeparator { get ; set ; }
201+ public bool WhitespaceInsideBrace { get ; set ; }
202+ public bool WhitespaceAroundPipe { get ; set ; }
201203 public bool IgnoreOneLineBlock { get ; set ; }
202204 public bool AlignPropertyValuePairs { get ; set ; }
203205 public bool UseCorrectCasing { get ; set ; }
@@ -278,7 +280,9 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
278280 { "CheckOpenBrace" , WhitespaceBeforeOpenBrace } ,
279281 { "CheckOpenParen" , WhitespaceBeforeOpenParen } ,
280282 { "CheckOperator" , WhitespaceAroundOperator } ,
281- { "CheckSeparator" , WhitespaceAfterSeparator }
283+ { "CheckSeparator" , WhitespaceAfterSeparator } ,
284+ { "CheckInnerBrace" , WhitespaceInsideBrace } ,
285+ { "CheckPipe" , WhitespaceAroundPipe } ,
282286 } } ,
283287 { "PSAlignAssignmentStatement" , new Hashtable {
284288 { "Enable" , true } ,
0 commit comments