astral-sh / ruff

An extremely fast Python linter and code formatter, written in Rust.
https://docs.astral.sh/ruff
MIT License
33.35k stars 1.11k forks source link

Rule categorization #1774

Open not-my-profile opened 1 year ago

not-my-profile commented 1 year ago

I think there are two perspectives ruff users may have:

The README currently groups rules by their origin. Which I think is suboptimal for both cases. For the first case our README only lists the lints implemented by ruff but doesn't tell you which (or how many) lints ruff is missing. For the second case you don't actually care about where the lints are coming from, you just want to see them grouped by topic.

So I think we should steal a nice feature from Clippy which are lint categories. Clippy has the following categories:

We could simply use the same categorization (except with cargo instead being pyproject as per #1472). I think we would however need some additional categories since there are several lint categories that Rust does not need, for example:

What do you think about this?

charliermarsh commented 1 year ago

I agree that we should kick off a re-categorization effort. Like #1773, will reply in a bit with some more thoughts :)

charliermarsh commented 1 year ago

I generally agree. I need to give some thought to the right categorization since this will be hard to undo.

My gut reaction is that... we may need more categories? Two that come to mind for me are docstrings and typing (or type-annotations, or whatever).

For the first case our README only lists the lints implemented by ruff but doesn't tell you which (or how many) lints ruff is missing.

It's not really relevant for this debate, but: in the majority of cases, we support the entire plugin. There are a few exceptions.

sbrugman commented 1 year ago

For inspiration/reference: overview of categories used in refurb

Plugin ticket: https://github.com/charliermarsh/ruff/issues/1348

tgross35 commented 1 year ago

+1 for simplifying categories, it's kind of a mess with 60 categories now (wow that's a lot).

I think it is totally reasonable to recategorize everything and assign coherent numbers for the error output (could use the R prefix and not just RUF since I don't see that used anywhere). With https://github.com/astral-sh/ruff/issues/1256, it would be useful to assign different levels to each lint group and allow the user to override the options, e.g.:

[lints]
suspicious = "allow"
docstrings = "error"

I do think it is still important to keep the flake8 numbers/groups around in the docs and usable for configuration - just since people are going to be looking for flake8 compatibility for the next decade. Doesn't need to be the main promoted style, but I have to imagine it would slow new adoption if enable = ["E", "W"] doesn't continue to work. Maybe there could be a "fix" tool that upgrades the flake8 style codes to whatever the new style is?

charliermarsh commented 1 year ago

Yeah, that's roughly my thinking too: recategorize the rules, but try to preserve support for the Flake8 compatibility layer at runtime + ship tooling to automatically migration an existing configuration file.

MichaReiser commented 9 months ago

Related requests are to disable all formatter rules, or deprecated rules

https://github.com/astral-sh/ruff/issues/10225 https://github.com/astral-sh/ruff/issues/9778

wwuck commented 2 months ago

For the first case our README only lists the lints implemented by ruff but doesn't tell you which (or how many) lints ruff is missing.

It's not really relevant for this debate, but: in the majority of cases, we support the entire plugin. There are a few exceptions.

Is this the case where ruff implements an entire flake8 plugin but then the plugin later adds new linting checks not covered by ruff? It seems to be hard to keep track of this sort of thing.

kaddkaka commented 5 days ago

As another reference, the c++ checker clang-tidy (https://clang.llvm.org/extra/clang-tidy/checks/list.html) has amongst others, these categories: