diff --git a/.vscode/settings.json b/.vscode/settings.json index b250385bac..89105813c4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,12 +1,7 @@ -// Configure PSScriptAnalyzer settings { - "powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", - "powershell.codeFormatting.preset": "OTBS", - "powershell.codeFormatting.alignPropertyValuePairs": true, - "powershell.codeFormatting.ignoreOneLineBlock": true, - "powershell.codeFormatting.useConstantStrings": true, - "powershell.codeFormatting.useCorrectCasing": true, - "powershell.codeFormatting.whitespaceBetweenParameters": true, + // Don't automatically create dotnet project .sln file + "dotnet.automaticallyCreateSolutionInWorkspace": false, + // Files to hide from VSCode file explorer "files.exclude": { "**/.git": true, "**/.svn": true, @@ -14,5 +9,13 @@ "**/CVS": true, "**/.DS_Store": true, "**/tmp": true - } + }, + // Configure PSScriptAnalyzer settings + "powershell.scriptAnalysis.settingsPath": "PSScriptAnalyzerSettings.psd1", + "powershell.codeFormatting.preset": "OTBS", + "powershell.codeFormatting.alignPropertyValuePairs": true, + "powershell.codeFormatting.ignoreOneLineBlock": true, + "powershell.codeFormatting.useConstantStrings": true, + "powershell.codeFormatting.useCorrectCasing": true, + "powershell.codeFormatting.whitespaceBetweenParameters": true }