File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,8 @@ class PSDocumentFormattingEditProvider implements
174
174
"PSPlaceCloseBrace" ,
175
175
"PSPlaceOpenBrace" ,
176
176
"PSUseConsistentWhitespace" ,
177
- "PSUseConsistentIndentation" ] ;
177
+ "PSUseConsistentIndentation" ,
178
+ "PSAlignAssignmentStatement" ]
178
179
179
180
// Allows edits to be undone and redone is a single step.
180
181
// It is usefuld to have undo stops after every edit while debugging
@@ -426,6 +427,10 @@ class PSDocumentFormattingEditProvider implements
426
427
ruleSettings [ "CheckSeparator" ] = psSettings . codeFormatting . whitespaceAfterSeparator ;
427
428
break ;
428
429
430
+ case "PSAlignAssignmentStatement" :
431
+ ruleSettings [ "CheckHashtable" ] = psSettings . codeFormatting . alignAssignmentsInHashtable ;
432
+ break ;
433
+
429
434
default :
430
435
break ;
431
436
}
You can’t perform that action at this time.
0 commit comments