Closed
Description
Running a simple ./x.py clippy
results in a roughly 49,000 line output.
Are we going to try to repair all ~3,500 warnings or are some of them not helpful?
There is an argument to be made that some do have performance implications (unwrap_or
vs unwrap_or_else
, push
vs push_str
).
Other are entirely cosmetic (one letter bindings, removing -> ()
).
An initial subset of these warnings be addressed by either
- Refactoring the code or
- Disabling that clippy warning
@rustbot modify labels to +C-cleanup.