27 lines
702 B
JSON
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": []
|
|
}
|
|
]
|
|
}
|