add vscode workspace

This commit is contained in:
Kjeld Schouten 2024-06-25 21:11:43 +02:00
parent 22ed06df65
commit d595c64ca5
No known key found for this signature in database
GPG Key ID: 287011974D890A74
4 changed files with 48 additions and 3 deletions

4
.gitignore vendored
View File

@ -12,9 +12,7 @@ config.py
auto_config.py
.DS_Store
.idea/
.vscode/
# IDE resources
.vscode
.vscode/settings.json
.idea
Gemfile.lock
Chart.lock

18
.vscode/extensions.json vendored Normal file
View File

@ -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"
]
}

22
.vscode/tasks.json vendored Normal file
View File

@ -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" : []
},
]
}

7
charts.code-workspace Normal file
View File

@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}