22 lines
739 B
JSON
22 lines
739 B
JSON
|
{
|
||
|
"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" : []
|
||
|
},
|
||
|
]
|
||
|
}
|