-
Notifications
You must be signed in to change notification settings - Fork 131
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
Replacement of flake8 with Ruff #1980
Conversation
Both rules are marked as preview, so I assume they will only be enabled in the next ruff release: https://docs.astral.sh/ruff/rules/#error-e |
That makes sense. But I tried some stable ones (E501 and E703), failed to catch them also. @SAMAD101 can you check if this is working for you? |
Also since more than half of the pycodestyle rules are still in preview, should we enable ruff's preview mode or wait for them to get stable before trying to replace flake8? |
Might be because it had to configured in |
Those seem to be working fine as well. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should reset your fork's master brach to upstream since it is diverged for a long time already.
will do |
Just to be clear slow linting isn't a problem we have. So this change should also simplify the config in some way or make it easier to run. |
yeah, it does somewhat simplify the cofigs. And linting is just as easy to run as it was, we can use pre-commit or 'ruff check' |
Description
This PR removes flake8 from
.pre-commit-config.yaml
,setup.cfg
and adds ruff for lintingRelated Issue
Resolves #1969
Motivation and Context
ruff is faster so yeah...
How Has This Been Tested?
Manually tested,
pre-commit
,make lint
works fine.Types of changes
Checklist:
I provide my contribution under the terms of the license of this repository and I affirm the Developer Certificate of Origin.