mirror of https://github.com/astral-sh/ruff
Yet another refactor to let us implement the many-to-many mapping
between codes and rules in a prefix-agnostic way.
We want to break up the RuleCodePrefix[1] enum into smaller enums.
To facilitate that this commit introduces a new wrapping type around
RuleCodePrefix so that we can start breaking it apart.
[1]: Actually `RuleCodePrefix` is the previous name of the autogenerated
enum ... I renamed it in
|
||
|---|---|---|
| .. | ||
| cache.rs | ||
| cli.rs | ||
| commands.rs | ||
| diagnostics.rs | ||
| iterators.rs | ||
| lib.rs | ||
| main.rs | ||
| printer.rs | ||
| updates.rs | ||