We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
VSCode prompt for installation of linters, formatters etc... when needed and install them with
pipenv install <stuff>
It will be better if the extension use the --dev flag for this kind of stuff
pipenv install <stuff> --dev
because, we don't want to install autopep8 or rope in production ;-)
The text was updated successfully, but these errors were encountered:
I actually didn't think we had added the pipenv install support. 😄 But yes, we should be using --dev.
pipenv install
--dev
Sorry, something went wrong.
When using pipenv, install packages (such as linters, test frameworks…
7c3ff8a
…) in dev-packages Fixes #1110
DonJayamanne
Successfully merging a pull request may close this issue.
Environment data
Actual behavior
VSCode prompt for installation of linters, formatters etc... when needed and install them with
pipenv install <stuff>
Expected behavior
It will be better if the extension use the --dev flag for this kind of stuff
pipenv install <stuff> --dev
because, we don't want to install autopep8 or rope in production ;-)
The text was updated successfully, but these errors were encountered: