forked from PowerShell/vscode-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextension-dev.code-workspace
More file actions
24 lines (24 loc) · 866 Bytes
/
extension-dev.code-workspace
File metadata and controls
24 lines (24 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"folders": [
{
"path": "."
},
{
"path": "../PowerShellEditorServices"
}
],
"settings": {
"files.associations": {
"**/snippets/*.json": "jsonc",
"**/.vsts-ci/**/*.yml": "azure-pipelines",
},
"typescript.tsdk": "./node_modules/typescript/lib",
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.newLineAfterCloseBrace": false,
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": false,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline"
}
}