add vscode workspace
This commit is contained in:
parent
22ed06df65
commit
d595c64ca5
|
@ -12,9 +12,7 @@ config.py
|
||||||
auto_config.py
|
auto_config.py
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.idea/
|
.idea/
|
||||||
.vscode/
|
.vscode/settings.json
|
||||||
# IDE resources
|
|
||||||
.vscode
|
|
||||||
.idea
|
.idea
|
||||||
Gemfile.lock
|
Gemfile.lock
|
||||||
Chart.lock
|
Chart.lock
|
||||||
|
|
|
@ -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"
|
||||||
|
]
|
||||||
|
}
|
|
@ -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" : []
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"folders": [
|
||||||
|
{
|
||||||
|
"path": "."
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue