forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
python.linting.pylintEnabled BROKEN for Default/User settings #3351
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
Comments
Same problem
|
Looked at josherickson's post, turns out it was because I had "python.jediEnabled": false in my User Setttings. When I deleted it, pylint was working fine. |
But I always have |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
pylint does not work unless
"python.linting.pylintEnabled": true
is in workspace settings.
If this is not included but IS included in "User settings", there will still be no pylint errors shown.
I'm using a simple error like
print 'hi'
which should through an error asking for parenthesis on python 3.
Since python.linting.pylintEnabled is true by default, this would mean that the default settings aren't working for me either. I MUST specify it specifically in my workspace settings.
The text was updated successfully, but these errors were encountered: