Ruff has the option of setting select = ["ALL"], which selects all the rule sets not in "preview". In particular, this includes
- flake8-bugbear (RF101)
- isort (RF102)
- pyupgrade (RF103).
However, repo review flags these as failures when "ALL" is set even though they are actually being used.
Ruff has the option of setting
select = ["ALL"], which selects all the rule sets not in "preview". In particular, this includesHowever, repo review flags these as failures when
"ALL"is set even though they are actually being used.