Skip to content

Commit 078efd2

Browse files
bergmeisterTylerLeonhardt
authored andcommitted
Turn powershell.codeformatting.useCorrectCasing setting off by default until PSSA issues are fixed (#1852)
1 parent 0a03861 commit 078efd2

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
@@ -697,7 +697,7 @@
697697
},
698698
"powershell.codeFormatting.useCorrectCasing": {
699699
"type": "boolean",
700-
"default": true,
700+
"default": false,
701701
"description": "Use correct casing for cmdlets."
702702
},
703703
"powershell.integratedConsole.showOnStartup": {

src/settings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function load(): ISettings {
150150
WhitespaceAroundPipe: true,
151151
ignoreOneLineBlock: true,
152152
alignPropertyValuePairs: true,
153-
useCorrectCasing: true,
153+
useCorrectCasing: false,
154154
};
155155

156156
const defaultIntegratedConsoleSettings: IIntegratedConsoleSettings = {

0 commit comments

Comments
 (0)