Skip to content

Commit 6245a68

Browse files
bergmeisterRobert Holt
authored and
Robert Holt
committed
Turn powershell.codeformatting.useCorrectCasing setting off by default until PSSA issues are fixed (PowerShell#1852)
1 parent 5a16fe0 commit 6245a68

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)