-
Notifications
You must be signed in to change notification settings - Fork 61
/
ADF.code-workspace
81 lines (81 loc) · 3.32 KB
/
ADF.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"folders": [
{
"path": "."
}
],
"settings": {
"window.title": "${activeFolderLong}",
"azureResourceManagerTools.autoDetectJsonTemplates": true,
"azureResourceManagerTools.checkForLatestSchema": true,
// https://learn.microsoft.com/en-us/powershell/utility-modules/psscriptanalyzer/rules/readme?view=ps-modules
"powershell.scriptAnalysis.settingsPath": "./.vscode/PSScriptAnalyzerSettings.psd1",
"powershell.codeFormatting.addWhitespaceAroundPipe": true,
"powershell.codeFormatting.alignPropertyValuePairs": true,
"powershell.codeFormatting.autoCorrectAliases": true,
"powershell.codeFormatting.ignoreOneLineBlock": true,
"powershell.codeFormatting.newLineAfterCloseBrace": true,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.openBraceOnSameLine": false,
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline",
"powershell.codeFormatting.trimWhitespaceAroundPipe": true,
"powershell.codeFormatting.useConstantStrings": true,
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.codeFormatting.whitespaceInsideBrace": true,
"powershell.notebooks.showToggleButton": true,
"powershell.pester.useLegacyCodeLens": false,
"pester.autoRunOnSave": false,
"azureAutomation.directory.basePath": "D:/repos/AARunbooks"
},
"extensions": {
"recommendations": [
"ms-vscode.azure-account",
"ms-vscode.powershell",
"msazurermtools.azurerm-vscode-tools",
"GitHub.vscode-pull-request-github",
"eamodio.gitlens",
"ms-dotnettools.vscode-dotnet-runtime",
"oderwat.indent-rainbow",
"ms-azuretools.vscode-bicep",
"humao.rest-client"
// "pspester.pester-test"
]
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "PowerShell",
"type": "shell",
"command": "",
"runOptions": {
"instanceLimit": 5,
"reevaluateOnRerun": true,
"runOn": "folderOpen"
},
"promptOnClose": true,
"options": {
"shell": {
"executable": "pwsh",
"args": [
"-NoExit",
"-NoLogo",
"-File",
"${workspaceFolder}/.vscode/Startup.ps1"
]
}
},
"isBackground": true,
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}
}