-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
VS Code does not honor pylint pyproject.toml file under default settings #13321
Comments
We do detect .pylintrc and pickup the settings from it. But we don't detect pyproject.toml and setup.cfg. Can you try .pylintrc, if that is not working can you share your project layout. |
I can confirm that .pylintrc does in fact work as expected. It is only pyproject.toml and setup.cfg that don't work unless "use minimal checkers" is set to false. |
We added code to detect |
Any news on this? Still trouble using flake8 config from Members of my team say it is working fine and to switch to pycharm... |
Environment data
python.languageServer
setting: default / JediExpected behaviour
Under the default settings pyproject.toml, setup.cfg, or .pylintrc file configs would be applied
Actual behaviour
These settings not applied unless Pylint Use Minimal Checkers is unchecked or explicitly set to false
Steps to reproduce:
pyproject.toml
And then save a python variable with an undefined variable and you will see the lint error despite the message being disabled in the pyproject.toml file
The text was updated successfully, but these errors were encountered: