Files
python-template/.vscode/tasks.json
Peter Krauß 236b47dc84 initial commit
2022-09-26 10:18:20 +02:00

27 lines
702 B
JSON

{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "autoflake",
"type": "process",
"command": "poetry",
"args": [
"run",
"autoflake",
"-i",
"--remove-all-unused-imports",
"--remove-unused-variables",
"${file}"
],
"presentation": {
"reveal": "silent",
"panel": "shared",
"showReuseMessage": false
},
"problemMatcher": []
}
]
}