-
Notifications
You must be signed in to change notification settings - Fork 71
/
project.code-workspace
60 lines (60 loc) · 2.13 KB
/
project.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
{
"folders": [
{
"path": "."
}
],
"settings": {
// list of extensions which should be recommended for users of this workspace.
"recommendations": [
"azurepolicy.azurepolicyextension",
"hashicorp.terraform",
"oderwat.indent-rainbow"
],
// azure policy definition schemas
"json.schemas": [
{
"fileMatch": [
"policies/*/*.json"
],
"url": "https://schema.management.azure.com/schemas/2020-10-01/policyDefinition.json"
}
],
// github workflows
"github-actions.workflows.pinned.refresh.enabled": true,
"github-actions.workflows.pinned.refresh.interval": 30,
"github-actions.workflows.pinned.workflows": [
".github/workflows/cd.yml",
".github/workflows/ci.yml"
],
// code formatting
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"cSpell.language": "en-GB",
"cSpell.enabled": true,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
// pwsh formatting
"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": true,
"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,
// enable bracket pair colorization.
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
}
}