j40-cejst-2/data/data-pipeline/.vscode/tasks.json
Nat Hillard 6c986adfe4
Check in VSCode config for easier local debug (#487)
* Fixes #466 - Task: Check in VSCode config for easier local debug
2021-08-09 14:55:13 -04:00

34 lines
714 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "test with tox",
"type": "shell",
"command": "tox",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "Run Black Formatter",
"type": "shell",
"command": "black",
"args": ["data_pipeline"]
},
{
"label": "Run Flake8 Style Enforcer",
"type": "shell",
"command": "black",
"args": ["data_pipeline"]
},
{
"label": "Run Pylint",
"type": "shell",
"command": "pylint",
"args": ["data_pipeline"]
}
]
}