Skip to content

Instantly share code, notes, and snippets.

@jenglamlow
Created August 6, 2017 14:19
Show Gist options
  • Select an option

  • Save jenglamlow/7feaf2626c8def5a44115d2301170369 to your computer and use it in GitHub Desktop.

Select an option

Save jenglamlow/7feaf2626c8def5a44115d2301170369 to your computer and use it in GitHub Desktop.
Visual Studio Code Python Task Runner
{
"version": "2.0.0",
"presentation": {
"reveal": "always",
"panel": "shared"
},
"tasks": [
{
"taskName": "Run",
"command": "python",
"type": "shell",
"args": [
"${file}"
],
"problemMatcher": "$tsc",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment