Skip to content

Instantly share code, notes, and snippets.

@pradishb
Created September 11, 2020 17:25
Show Gist options
  • Save pradishb/fcb71d87d9269a886d84d77737176aea to your computer and use it in GitHub Desktop.
Save pradishb/fcb71d87d9269a886d84d77737176aea to your computer and use it in GitHub Desktop.
vscode-autoflake-remove-all-unused-imports-task
{
"version": "2.0.0",
"tasks": [
{
"label": "autoflake-remove-all-unused-imports",
"type": "shell",
"command": "${config:python.pythonPath}",
"args": [
"-m",
"autoflake",
"-i",
"--remove-all-unused-imports",
"${file}"
],
"problemMatcher": []
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment