We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 656305e commit 62e87adCopy full SHA for 62e87ad
package.json
@@ -670,12 +670,12 @@
670
"default": true,
671
"description": "Adds a space after a separator (',' and ';')."
672
},
673
- "powershell.codeFormatting.WhitespaceInsideBrace": {
+ "powershell.codeFormatting.whitespaceInsideBrace": {
674
"type": "boolean",
675
676
"description": "Adds a space after an opening brace ('{') and before a closing brace ('}')."
677
678
- "powershell.codeFormatting.WhitespaceAroundPipe": {
+ "powershell.codeFormatting.whitespaceAroundPipe": {
679
680
681
"description": "Adds a space before and after the pipeline operator ('|')."
src/settings.ts
@@ -50,8 +50,8 @@ export interface ICodeFormattingSettings {
50
whitespaceBeforeOpenParen: boolean;
51
whitespaceAroundOperator: boolean;
52
whitespaceAfterSeparator: boolean;
53
- WhitespaceInsideBrace: true;
54
- WhitespaceAroundPipe: true;
+ whitespaceInsideBrace: true;
+ whitespaceAroundPipe: true;
55
ignoreOneLineBlock: boolean;
56
alignPropertyValuePairs: boolean;
57
useCorrectCasing: boolean;
@@ -140,8 +140,8 @@ export function load(): ISettings {
140
whitespaceBeforeOpenParen: true,
141
whitespaceAroundOperator: true,
142
whitespaceAfterSeparator: true,
143
- WhitespaceInsideBrace: true,
144
- WhitespaceAroundPipe: true,
+ whitespaceInsideBrace: true,
+ whitespaceAroundPipe: true,
145
ignoreOneLineBlock: true,
146
alignPropertyValuePairs: true,
147
useCorrectCasing: false,
0 commit comments