initial commit
This commit is contained in:
26
.vscode/tasks.json
vendored
Normal file
26
.vscode/tasks.json
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
// 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": []
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user