{ "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", ] }, ] }