Add PowerShell VSCode style settings (#5529)

This commit is contained in:
Chris 2017-11-28 17:09:32 +00:00 committed by Dongbo Wang
parent 2c4257eeb6
commit f5b9942b0d

17
.vscode/settings.json vendored
View file

@ -18,5 +18,20 @@
"[powershell]": {
"files.trimTrailingWhitespace": true
}
},
// Sets the codeformatting options to follow the given indent style in a way that is compatible with PowerShell syntax. For more information about the brace styles please refer to https://github.com/PoshCode/PowerShellPracticeAndStyle/issues/81.
"powershell.codeFormatting.preset": "OTBS",
// Adds a space between a keyword and its associated scriptblock expression.
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
// Adds a space between a keyword (if, elseif, while, switch, etc) and its associated conditional expression.
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
// Adds spaces before and after an operator ('=', '+', '-', etc.).
"powershell.codeFormatting.whitespaceAroundOperator": true,
// Adds a space after a separator (',' and ';').
"powershell.codeFormatting.whitespaceAfterSeparator": true
}