-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for venv #25
Comments
Same issue here. At least for me, not being able to use dedicated linter environments is a nogo. Since not all applications are possibly in the same environment I propose to use a configuration setting which prepends the Something like linter.prependPath: ["<path to bin1>", "<path to bin2>", ...] in case |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, linters such as yamllint that are installed using Python require them to be installed globally. When they are installed in a venv, they work normally, but aren't seen by the linter extension.
This is a problem as not only it requires polluting the $PATH, but can be hard to do in systems with multiple Python versions, where installed packages don't get added to the $PATH.
The text was updated successfully, but these errors were encountered: