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 672
672
"default" : true ,
673
673
"description" : " Align assignment statements in a hashtable or a DSC Configuration."
674
674
},
675
+ "powershell.codeFormatting.useCorrectCasing" : {
676
+ "type" : " boolean" ,
677
+ "default" : true ,
678
+ "description" : " Use correct casing for cmdlets."
679
+ },
675
680
"powershell.integratedConsole.showOnStartup" : {
676
681
"type" : " boolean" ,
677
682
"default" : true ,
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export interface ICodeFormattingSettings {
45
45
whitespaceAfterSeparator : boolean ;
46
46
ignoreOneLineBlock : boolean ;
47
47
alignPropertyValuePairs : boolean ;
48
+ useCorrectCasing : boolean ;
48
49
}
49
50
50
51
export interface IScriptAnalysisSettings {
@@ -131,6 +132,7 @@ export function load(): ISettings {
131
132
whitespaceAfterSeparator : true ,
132
133
ignoreOneLineBlock : true ,
133
134
alignPropertyValuePairs : true ,
135
+ useCorrectCasing : true ,
134
136
} ;
135
137
136
138
const defaultIntegratedConsoleSettings : IIntegratedConsoleSettings = {
You can’t perform that action at this time.
0 commit comments