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
VS Code version:
1.18.1-1
Python Extension version:
0.8.0
Python Version:
3.6.3
OS and version:
Arch Linux x64
Actual behavior
When adding the following line to my user setings: "python.linting.pylintArgs": ["--disable=W0312"], I get an error message, that pylint is not installed (it is). If I remove the argument, so the line becomes "python.linting.pylintArgs": [], the error doesn't show up and linting works without problems.
Outside of VSCode, running python -m pylint testscript.py --disable=W0312 works as expected.
Expected behavior
Pylint should work with that one warning disabled. VSCode shouldn't throw that error, since it is misleading and incorrect.
Steps to reproduce:
Have VSCode install pylint for you. Add "python.linting.pylintArgs": ["disable=W0312"] to your user settings.
Logs
Output from Python output panel
Linting with pylint failed.
You could either install the 'pylint' linter or turn it off in setings.json via "python.linting.pylintEnabled = false".
Error: spawn pylint ENOENT
Environment data
VS Code version:
1.18.1-1
Python Extension version:
0.8.0
Python Version:
3.6.3
OS and version:
Arch Linux x64
Actual behavior
When adding the following line to my user setings:
"python.linting.pylintArgs": ["--disable=W0312"]
, I get an error message, that pylint is not installed (it is). If I remove the argument, so the line becomes"python.linting.pylintArgs": []
, the error doesn't show up and linting works without problems.Outside of VSCode, running
python -m pylint testscript.py --disable=W0312
works as expected.Expected behavior
Pylint should work with that one warning disabled. VSCode shouldn't throw that error, since it is misleading and incorrect.
Steps to reproduce:
Have VSCode install pylint for you. Add
"python.linting.pylintArgs": ["disable=W0312"]
to your user settings.Logs
Output from
Python
output panelOutput from
Console window
(Help->DevelopThe text was updated successfully, but these errors were encountered: