Currently, we only use codes E and F, which are nice but very limited. But ruff includes a bazillion other rules, many of which are interesting, at least for some parts of the code.
Running
ruff check --select ALL . will show all issues.
ruff check --select ALL --statistics . will show how many issues of each type there are
Currently, we only use codes E and F, which are nice but very limited. But ruff includes a bazillion other rules, many of which are interesting, at least for some parts of the code.
Running
ruff check --select ALL .
will show all issues.ruff check --select ALL --statistics .
will show how many issues of each type there are