-
Notifications
You must be signed in to change notification settings - Fork 3
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
Issue984/switch to pylint #986
base: develop
Are you sure you want to change the base?
Conversation
…ror codes specified
Message controls for specific lines and for entire filesFor pylama we have some lines where we want to skip linting. We do this by having # noqa at the end of the line. pylint does not follow the same syntax. To skip message codes on a line add In addition to skipping specific lines, we also have specific message codes skipped for an entire file. We're doing this in pylama by adding Here's documentation about disabling messages in pylint: https://pylint.pycqa.org/en/latest/user_guide/messages/message_control.html |
|
This PR fixes issue #984.
pyproject.toml and setup.cfg have been updated, and pylama.yml has been changed to pylint.yml. I chose pylint 3.2.7 because it supports python >= 3.8 and our current python version is >=3.8.3,<=3.13.0. All of the other recent pylint releases support python >= 3.9.
This PR will be compared with the one I'll make switching to Ruff so we can decide which one to switch to.