Skip to content

Commit c86418b

Browse files
bergmeisterrjmholt
authored andcommitted
Turn powershell.codeformatting.useCorrectCasing setting off by default until PSSA issues are fixed (#1852)
1 parent 5a16fe0 commit c86418b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@
692692
},
693693
"powershell.codeFormatting.useCorrectCasing": {
694694
"type": "boolean",
695-
"default": true,
695+
"default": false,
696696
"description": "Use correct casing for cmdlets."
697697
},
698698
"powershell.integratedConsole.showOnStartup": {

src/settings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export function load(): ISettings {
144144
WhitespaceAroundPipe: true,
145145
ignoreOneLineBlock: true,
146146
alignPropertyValuePairs: true,
147-
useCorrectCasing: true,
147+
useCorrectCasing: false,
148148
};
149149

150150
const defaultIntegratedConsoleSettings: IIntegratedConsoleSettings = {

0 commit comments

Comments
 (0)