-
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 ruff #987
base: develop
Are you sure you want to change the base?
Conversation
…tup.cfg and test file for E402
There are things that Ruff isn't picking up that I thought it would. For example, it's not picking up message E501, the line too long error, when it should be. This is because it's only checking rules sections There are some message codes that I set to ignore in ruff.toml even though they are in "preview". It seems like "preview" is something they're working to introduce. I went ahead and added "preview" message codes into ruff.toml that were in setup.cfg so we'd have them there when they get added to a new release. These messages are PLR0914 and PLR0916 |
This PR fixes issue #984.
This PR will be compared with PR #986 which switches to pylint so we can decide which one to switch to.