Last active
December 6, 2021 22:08
-
-
Save tonybaloney/bdfe5f58f9bcc2c99a9437ed52911be1 to your computer and use it in GitHub Desktop.
Pip audit task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Pip Audit", | |
"type": "shell", | |
"command": "${command:python.interpreterPath}", | |
"args": ["-m", "pip_audit"], | |
"isBackground": true, | |
"group": "none", | |
"runOptions": { | |
"runOn": "folderOpen", | |
}, | |
"presentation": { | |
"echo": true, | |
"reveal": "always", | |
"focus": true, | |
"panel": "shared", | |
"showReuseMessage": false, | |
"clear": false | |
}, | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment