-
Notifications
You must be signed in to change notification settings - Fork 17
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
Replace flake8 with ruff for linting #259
Replace flake8 with ruff for linting #259
Conversation
Test Coverage: Download HTML Report
|
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.
This breaks the Makefile make venv_lint
Can we do a full replace of flake8 with ruff?
Good catch. Let me fix that call or see how it can be fixed. I believe we can do a full replace of flake8 with ruff since ruff is a superset of flake8. |
4bd2dce
to
f265ed1
Compare
Test Coverage: Download HTML Report
|
I found a few other things to improve with the replacement of flake8 including the pre-commit tool. This will help for the next step to include ruff automatic formatting. This should be good to check again. |
What I did
Replaced flake8 with ruff for linting. We could eventually use ruff for formatting as well and I'll do some additional tests to see how this can be integrated better.
Related issue
Part of #179