@@ -176,6 +176,8 @@ public CodeFormattingSettings(CodeFormattingSettings codeFormattingSettings)
176
176
public bool WhitespaceBeforeOpenParen { get ; set ; }
177
177
public bool WhitespaceAroundOperator { get ; set ; }
178
178
public bool WhitespaceAfterSeparator { get ; set ; }
179
+ public bool WhitespaceInsideBrace { get ; set ; }
180
+ public bool WhitespaceAroundPipe { get ; set ; }
179
181
public bool IgnoreOneLineBlock { get ; set ; }
180
182
public bool AlignPropertyValuePairs { get ; set ; }
181
183
public bool UseCorrectCasing { get ; set ; }
@@ -255,7 +257,9 @@ private Hashtable GetCustomPSSASettingsHashtable(int tabSize, bool insertSpaces)
255
257
{ "CheckOpenBrace" , WhitespaceBeforeOpenBrace } ,
256
258
{ "CheckOpenParen" , WhitespaceBeforeOpenParen } ,
257
259
{ "CheckOperator" , WhitespaceAroundOperator } ,
258
- { "CheckSeparator" , WhitespaceAfterSeparator }
260
+ { "CheckSeparator" , WhitespaceAfterSeparator } ,
261
+ { "CheckInnerBrace" , WhitespaceInsideBrace } ,
262
+ { "CheckPipe" , WhitespaceAroundPipe } ,
259
263
} } ,
260
264
{ "PSAlignAssignmentStatement" , new Hashtable {
261
265
{ "Enable" , true } ,
0 commit comments