configs/.vscode/tasks.json

18 lines
381 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run run.yml playbook",
"type": "shell",
"command": "ansible-playbook run.yml -K",
"problemMatcher": []
},
{
"label": "Lint",
"type": "shell",
"command": "ansible-lint",
"problemMatcher": []
}
]
}