@@ -176,6 +176,8 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
176176 public bool WhitespaceBeforeOpenParen { get ; set ; }
177177 public bool WhitespaceAroundOperator { get ; set ; }
178178 public bool WhitespaceAfterSeparator { get ; set ; }
179+ public bool WhitespaceInsideBrace { get ; set ; }
180+ public bool WhitespaceAroundPipe { get ; set ; }
179181 public bool IgnoreOneLineBlock { get ; set ; }
180182 public bool AlignPropertyValuePairs { get ; set ; }
181183 public bool UseCorrectCasing { get ; set ; }
@@ -255,7 +257,9 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
255257 { "CheckOpenBrace" , WhitespaceBeforeOpenBrace } ,
256258 { "CheckOpenParen" , WhitespaceBeforeOpenParen } ,
257259 { "CheckOperator" , WhitespaceAroundOperator } ,
258- { "CheckSeparator" , WhitespaceAfterSeparator }
260+ { "CheckSeparator" , WhitespaceAfterSeparator } ,
261+ { "CheckInnerBrace" , WhitespaceInsideBrace } ,
262+ { "CheckPipe" , WhitespaceAroundPipe } ,
259263 } } ,
260264 { "PSAlignAssignmentStatement" , new Hashtable {
261265 { "Enable" , true } ,
0 commit comments