gtn/.vscode/tasks.json

29 lines
612 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Python: MyPy",
"type": "shell",
"command": "mypy",
"args": [
"."
]
},
{
"label": "Python: Pylint",
"type": "shell",
"command": "pylint",
"args": [
"**/*.py"
]
},
{
"label": "Python: Check",
"dependsOrder": "sequence",
"dependsOn": [
"Python: MyPy",
"Python: Pylint",
]
},
]
}