SSPowerShellBoilerplate/vscode/settings.json
{ //-------- Files configuration -------- // When enabled, will trim trailing whitespace when you save a file. "files.trimTrailingWhitespace": true, // When enabled, insert a final new line at the end of the file when saving it. "files.insertFinalNewline": true, "search.exclude": { "Release": true }, //-------- PowerShell Configuration -------- // Use a custom PowerShell Script Analyzer settings file for this workspace. // Relative paths for this setting are always relative to the workspace root dir. "powershell.scriptAnalysis.settingsPath": "ScriptAnalyzerSettings.psd1" } |