File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 672672          "default" : true ,
673673          "description" : " Align assignment statements in a hashtable or a DSC Configuration." 
674674        },
675+         "powershell.codeFormatting.useCorrectCasing" : {
676+           "type" : " boolean"  ,
677+           "default" : true ,
678+           "description" : " Use correct casing for cmdlets." 
679+         },
675680        "powershell.integratedConsole.showOnStartup" : {
676681          "type" : " boolean"  ,
677682          "default" : true ,
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ export interface ICodeFormattingSettings {
4545    whitespaceAfterSeparator : boolean ; 
4646    ignoreOneLineBlock : boolean ; 
4747    alignPropertyValuePairs : boolean ; 
48+     useCorrectCasing : boolean ; 
4849} 
4950
5051export  interface  IScriptAnalysisSettings  { 
@@ -131,6 +132,7 @@ export function load(): ISettings {
131132        whitespaceAfterSeparator : true , 
132133        ignoreOneLineBlock : true , 
133134        alignPropertyValuePairs : true , 
135+         useCorrectCasing : true , 
134136    } ; 
135137
136138    const  defaultIntegratedConsoleSettings : IIntegratedConsoleSettings  =  { 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments