Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
add vscode workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
PrivatePuffin committed Jun 25, 2024
1 parent 22ed06d commit d595c64
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ config.py
auto_config.py
.DS_Store
.idea/
.vscode/
# IDE resources
.vscode
.vscode/settings.json
.idea
Gemfile.lock
Chart.lock
Expand Down
18 changes: 18 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -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 changes: 22 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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 changes: 7 additions & 0 deletions charts.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": "."
}
]
}

0 comments on commit d595c64

Please sign in to comment.