File tree 2 files changed +7
-0
lines changed
2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 687
687
"default" : true ,
688
688
"description" : " Align assignment statements in a hashtable or a DSC Configuration."
689
689
},
690
+ "powershell.codeFormatting.useCorrectCasing" : {
691
+ "type" : " boolean" ,
692
+ "default" : true ,
693
+ "description" : " Use correct casing for cmdlets."
694
+ },
690
695
"powershell.integratedConsole.showOnStartup" : {
691
696
"type" : " boolean" ,
692
697
"default" : true ,
Original file line number Diff line number Diff line change @@ -54,6 +54,7 @@ export interface ICodeFormattingSettings {
54
54
WhitespaceAroundPipe : true ;
55
55
ignoreOneLineBlock : boolean ;
56
56
alignPropertyValuePairs : boolean ;
57
+ useCorrectCasing : boolean ;
57
58
}
58
59
59
60
export interface IScriptAnalysisSettings {
@@ -143,6 +144,7 @@ export function load(): ISettings {
143
144
WhitespaceAroundPipe : true ,
144
145
ignoreOneLineBlock : true ,
145
146
alignPropertyValuePairs : true ,
147
+ useCorrectCasing : true ,
146
148
} ;
147
149
148
150
const defaultIntegratedConsoleSettings : IIntegratedConsoleSettings = {
You can’t perform that action at this time.
0 commit comments