@@ -198,6 +198,8 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
198
198
public bool WhitespaceBeforeOpenParen { get ; set ; }
199
199
public bool WhitespaceAroundOperator { get ; set ; }
200
200
public bool WhitespaceAfterSeparator { get ; set ; }
201
+ public bool WhitespaceInsideBrace { get ; set ; }
202
+ public bool WhitespaceAroundPipe { get ; set ; }
201
203
public bool IgnoreOneLineBlock { get ; set ; }
202
204
public bool AlignPropertyValuePairs { get ; set ; }
203
205
public bool UseCorrectCasing { get ; set ; }
@@ -278,7 +280,9 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
278
280
{ "CheckOpenBrace" , WhitespaceBeforeOpenBrace } ,
279
281
{ "CheckOpenParen" , WhitespaceBeforeOpenParen } ,
280
282
{ "CheckOperator" , WhitespaceAroundOperator } ,
281
- { "CheckSeparator" , WhitespaceAfterSeparator }
283
+ { "CheckSeparator" , WhitespaceAfterSeparator } ,
284
+ { "CheckInnerBrace" , WhitespaceInsideBrace } ,
285
+ { "CheckPipe" , WhitespaceAroundPipe } ,
282
286
} } ,
283
287
{ "PSAlignAssignmentStatement" , new Hashtable {
284
288
{ "Enable" , true } ,
0 commit comments