vorta icon indicating copy to clipboard operation
vorta copied to clipboard

Replacement of flake8 with Ruff

Open SAMAD101 opened this issue 1 year ago • 9 comments

Description

This PR removes flake8 from .pre-commit-config.yaml , setup.cfg and adds ruff for linting

Related 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

  • [ ] Bug fix (non-breaking change which fixes an issue)
  • [x] New feature (non-breaking change which adds functionality)
  • [ ] Breaking change (fix or feature that would cause existing functionality to change)

Checklist:

  • [x] I have read the CONTRIBUTING guide.
  • [x] My code follows the code style of this project.
  • [ ] My change requires a change to the documentation.
  • [ ] I have updated the documentation accordingly.
  • [ ] I have added tests to cover my changes.
  • [ ] All new and existing tests passed.

I provide my contribution under the terms of the license of this repository and I affirm the Developer Certificate of Origin.

SAMAD101 avatar Apr 04 '24 15:04 SAMAD101

Screenshot from 2024-04-05 01-21-00

I tried checking E201 and E241 of flake8 but ruff couldn't catch them and were fixed by black.

shivansh02 avatar Apr 04 '24 19:04 shivansh02

I tried checking E201 and E241 of flake8 but ruff couldn't catch them and were fixed by black.

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

Hofer-Julian avatar Apr 05 '24 05:04 Hofer-Julian

I tried checking E201 and E241 of flake8 but ruff couldn't catch them and were fixed by black.

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?

shivansh02 avatar Apr 05 '24 06:04 shivansh02

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?

shivansh02 avatar Apr 05 '24 06:04 shivansh02

I tried checking E201 and E241 of flake8 but ruff couldn't catch them and were fixed by black.

Might be because it had to configured in ruff.toml Works fine now. Checked

SAMAD101 avatar Apr 05 '24 10:04 SAMAD101

I tried checking E201 and E241 of flake8 but ruff couldn't catch them and were fixed by black.

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?

Those seem to be working fine as well. You can check them using: ruff check src/ --preview --select <rule_code>

SAMAD101 avatar Apr 05 '24 10:04 SAMAD101

You should reset your fork's master brach to upstream since it is diverged for a long time already.

will do

SAMAD101 avatar Apr 06 '24 20:04 SAMAD101

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.

m3nu avatar Apr 07 '24 07:04 m3nu

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'

SAMAD101 avatar Apr 07 '24 09:04 SAMAD101