-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathposh.code-workspace
More file actions
107 lines (107 loc) · 2.89 KB
/
posh.code-workspace
File metadata and controls
107 lines (107 loc) · 2.89 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"folders": [
{
"path": "."
}
],
"settings": {
"files.encoding": "utf8bom",
"files.eol": "\r\n",
"files.trimTrailingWhitespace": true,
"files.associations": {
".*rc": "json",
".code-workspace": "json",
"app.config": "xml"
},
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"[powershell]": {
"editor.tabSize": 4,
"editor.defaultFormatter": "ms-vscode.powershell"
},
"[markdown]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"markdownlint.config": {
"MD033": false
},
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.codeFormatting.whitespaceBetweenParameters": true,
"powershell.integratedConsole.suppressStartupBanner": true,
"powershell.integratedConsole.showOnStartup": false,
"powershell.scriptAnalysis.settingsPath": "./.vscode/PSScriptAnalyzerSettings.psd1",
"powershell.codeFormatting.pipelineIndentationStyle": "IncreaseIndentationForFirstPipeline",
"powershell.developer.editorServicesLogLevel": "Warning",
"files.exclude": {
".vs": true,
"**/*.orig": true,
"**/*.~*": true,
"**/*_i.c": true,
"**/*_p.c": true,
"**/*_h.h": true,
"**/*.ilk": true,
"**/*.meta": true,
"**/*.obj": true,
"**/*.iobj": true,
"**/*.pch": true,
"**/*.pdb": true,
"**/*.ipdb": true,
"**/*.pgc": true,
"**/*.pgd": true,
"**/*.rsp": true,
"**/*.sbr": true,
"**/*.tlb": true,
"**/*.tli": true,
"**/*.tlh": true,
"**/*.tmp": true,
"**/*.tmp_proj": true,
"**/*_wpftmp.csproj": true,
"**/*.log": true,
"**/*.vspscc": true,
"**/*.vssscc": true,
"**/.builds": true,
"**/*.pidb": true,
"**/*.svclog": true,
"**/*.scc": true,
"**/*.jfm": true,
"**/*.dbmdl": true,
"**/*.psess": true,
"**/*.vsp": true,
"**/*.vspx": true,
"**/*.sap": true,
"**/*.e2e": true,
"**/$tf/": true,
"**/*.rsuser": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userosscache": true,
"**/*.sln.docstates": true
},
"powershell.codeFormatting.avoidSemicolonsAsLineTerminators": true
},
"extensions": {
"recommendations": [
"ms-vscode.powershell",
"yzhang.markdown-all-in-one",
"DavidAnson.vscode-markdownlint",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"pspester.pester-test",
"ms-vscode.test-adapter-converter",
"hbenl.vscode-test-explorer"
]
}
}