add vscode workspace
This commit is contained in:
Vendored
+18
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"recommendations": [
|
||||
"redhat.vscode-yaml",
|
||||
"mrmlnc.vscode-duplicate",
|
||||
"mhutchie.git-graph",
|
||||
"eamodio.gitlens",
|
||||
"yzhang.markdown-all-in-one",
|
||||
"searKing.preview-vscode",
|
||||
"DavidAnson.vscode-markdownlint",
|
||||
"IgorSbitnev.error-gutters",
|
||||
"usernamehw.errorlens",
|
||||
"Tim-Koehler.helm-intellisense",
|
||||
"ms-kubernetes-tools.vscode-kubernetes-tools",
|
||||
"sandipchitale.vscode-kubernetes-helm-extras",
|
||||
"VadzimNestsiarenka.helm-template-preview-and-more",
|
||||
"karyan40024.helmix"
|
||||
]
|
||||
}
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Install All Recommended Extensions",
|
||||
"type": "shell",
|
||||
"windows": {
|
||||
"command": "foreach ($ext in (Get-Content -Raw .vscode/extensions.json | ConvertFrom-Json).recommendations) { Write-Host Installing $ext; code --install-extension $ext; }"
|
||||
},
|
||||
"linux": {
|
||||
"command": "cat .vscode/extensions.json | jq .recommendations[] | xargs -n 1 code . --install-extension"
|
||||
},
|
||||
"runOptions": {
|
||||
"runOn": "folderOpen"
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "silent"
|
||||
},
|
||||
"problemMatcher" : []
|
||||
},
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user