We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7b9d20 commit 93b7a27Copy full SHA for 93b7a27
2 files changed
package.json
@@ -885,6 +885,11 @@
885
"default": true,
886
"markdownDescription": "Align assignment statements in a hashtable or a DSC Configuration."
887
},
888
+ "powershell.codeFormatting.alignEnumMemberValues": {
889
+ "type": "boolean",
890
+ "default": true,
891
+ "markdownDescription": "Align member value assignments in an Enum Type Definition."
892
+ },
893
"powershell.codeFormatting.useConstantStrings": {
894
"type": "boolean",
895
"default": false,
src/settings.ts
@@ -92,6 +92,7 @@ class CodeFormattingSettings extends PartialSettings {
92
trimWhitespaceAroundPipe = false;
93
ignoreOneLineBlock = true;
94
alignPropertyValuePairs = true;
95
+ alignEnumMemberValues = true;
96
useConstantStrings = false;
97
useCorrectCasing = false;
98
}
0 commit comments