-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTechToolbox.code-workspace
More file actions
95 lines (95 loc) · 3.16 KB
/
TechToolbox.code-workspace
File metadata and controls
95 lines (95 loc) · 3.16 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
{
"folders": [
{
"path": "."
}
],
"settings": {
// ------------------------------
// File & Folder Visibility
// ------------------------------
"files.exclude": {
"**/.git": true,
"**/.vscode": false,
"Logs": true,
"Exports": true,
"Tests/Output": true,
"Dependencies/EXO/obj": true,
"Dependencies/EXO/bin": true,
"**/TechToolbox.psd1": true
},
"search.exclude": {
"Logs": true,
"Exports": true,
"Tests/Output": true
},
// ------------------------------
// PowerShell Development
// ------------------------------
"powershell.integratedConsole.showOnStartup": false,
"powershell.codeFormatting.preset": "Stroustrup",
"powershell.codeFormatting.useCorrectCasing": true,
"powershell.scriptAnalysis.enable": true,
"powershell.scriptAnalysis.settingsPath": "C:\\TechToolbox\\PSScriptAnalyzerSettings.psd1",
// ------------------------------
// Editor Behavior
// ------------------------------
"editor.defaultFormatter": "ms-vscode.powershell",
"editor.formatOnSave": false,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.rulers": [
100,
140
],
"editor.wordWrap": "off",
"editor.renderWhitespace": "boundary",
// ------------------------------
// File Hygiene
// ------------------------------
"files.trimTrailingWhitespace": false,
"files.insertFinalNewline": true,
"files.encoding": "utf8",
// ------------------------------
// Terminal Defaults
// ------------------------------
"terminal.integrated.defaultProfile.windows": "PowerShell",
"terminal.integrated.cwd": "${workspaceFolder}",
// ------------------------------
// Git & Diff Quality of Life
// ------------------------------
"git.confirmSync": false,
"git.autofetch": true,
"diffEditor.ignoreTrimWhitespace": false,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[http]": {
"editor.defaultFormatter": "ShinyaSuzuki.rest-formatter"
},
"cSpell.words": [],
"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
},
// ------------------------------
// Recommended Extensions
// ------------------------------
"extensions": {
"recommendations": [
"ms-vscode.powershell",
"eamodio.gitlens",
"streetsidesoftware.code-spell-checker",
"yzhang.markdown-all-in-one",
"ms-azuretools.vscode-docker",
"oderwat.indent-rainbow",
"esbenp.prettier-vscode",
"tal7aouy.rainbow-brackets",
"dnut.rewrap-revived",
"dotjoshjohnson.xml",
"github.copilot-chat",
"dsznajder.es7-react-js-snippets",
"humao.rest-client"
]
}
}