gtn/.vscode/tasks.json

33 lines
750 B
JSON
Raw Normal View History

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