You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extension vscode-python supports many tools for linting/formatting etc. I want to specify a single parameter so that vscode has access to all of them.
For example:
I have installed the black formatter tool in my home folder in a path: $HOME/.local/bin/black ;
using command: pip install --user black. I've also installed pylint in the same path.
How can I configure vscode to use both of those tools without specifying black and pylint path explicitly in the settings.json?
I tried setting PYTHONPATH and PATH in the .env file, but to no avail.
The text was updated successfully, but these errors were encountered:
Extension vscode-python supports many tools for linting/formatting etc. I want to specify a single parameter so that vscode has access to all of them.
For example:
I have installed the
black
formatter tool in my home folder in a path:$HOME/.local/bin/black
;using command:
pip install --user black
. I've also installedpylint
in the same path.How can I configure vscode to use both of those tools without specifying black and pylint path explicitly in the settings.json?
I tried setting PYTHONPATH and PATH in the .env file, but to no avail.
The text was updated successfully, but these errors were encountered: