We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 078efd2 commit cbf3f2aCopy full SHA for cbf3f2a
package.json
@@ -675,12 +675,12 @@
675
"default": true,
676
"description": "Adds a space after a separator (',' and ';')."
677
},
678
- "powershell.codeFormatting.WhitespaceInsideBrace": {
+ "powershell.codeFormatting.whitespaceInsideBrace": {
679
"type": "boolean",
680
681
"description": "Adds a space after an opening brace ('{') and before a closing brace ('}')."
682
683
- "powershell.codeFormatting.WhitespaceAroundPipe": {
+ "powershell.codeFormatting.whitespaceAroundPipe": {
684
685
686
"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;
@@ -146,8 +146,8 @@ export function load(): ISettings {
146
whitespaceBeforeOpenParen: true,
147
whitespaceAroundOperator: true,
148
whitespaceAfterSeparator: true,
149
- WhitespaceInsideBrace: true,
150
- WhitespaceAroundPipe: true,
+ whitespaceInsideBrace: true,
+ whitespaceAroundPipe: true,
151
ignoreOneLineBlock: true,
152
alignPropertyValuePairs: true,
153
useCorrectCasing: false,
0 commit comments