{ // VS Code tasks for common project actions "version": "2.0.0", "tasks": [ { "label": "pytest", "type": "shell", "command": "${command:python.interpreterPath}", "args": ["-m", "pytest", "-q"], "group": "build", "problemMatcher": ["$python"] }, { "label": "pylint:src", "type": "shell", "command": "${command:python.interpreterPath}", "args": ["-m", "pylint", "src/claudia", "--score=n", "--rcfile", "pylintrc"], "group": "build" }, { "label": "pylint:tests", "type": "shell", "command": "${command:python.interpreterPath}", "args": ["-m", "pylint", "tests", "--score=n", "--rcfile", "pylintrc"], "group": "build" } ] }