Philipp Krones
Philipp Krones
When trying to add an `impl` on a `dyn Trait` gccrs produces an ICE which appears to come from the parser. ### Code ```rust trait T {} impl dyn T...
r? @xFrednet changelog: none [Rendered](https://github.com/flip1995/rust-clippy/blob/changelog/CHANGELOG.md)
There's already `cargo dev` which makes Clippy development easier and more pleasant. This can still be expanded, so that it covers more areas of the development process. Steps to completion:...
### Background information The current definition of CORE-V hardware loop instructions introduce several challenges to both tool writers and users, and we feel before people are relying on the current...
Rustup
r? @ghost changelog: none
Until now, the lint only emitted a warning, when breaking public API. Now it doesn't lint at all when the config value is not set to `false`, bringing it in...
### Description Follow up to https://github.com/rust-lang/rust-clippy/pull/12374 That PR added the `-Zdeduplicate-diagnostics=yes` flag to the following test files, to suppress the warning that will now be produced should new lints/tests emit...
Currently, when reading (or writing) an NPZ file and the type descriptor is not as expected, the error message only shows the descriptor that's in the NPZ file: https://github.com/jturner314/ndarray-npy/blob/169c11649c3d27b83595c3b15d86c60133a9aac8/src/npy/mod.rs#L488-L490 This...
### [Introduce utils mod in clippy_dev](https://github.com/rust-lang/rust-clippy/pull/12759/commits/c03857e73478353858cf42a424b791d6b8ed5d5c) There was some dependence between the different subcommands of clippy_dev. And this dependence will increased with the introduction of the sync and release subcommands....
Use the derive feature of `clap` to generate CLI of clippy-dev. Adding new commands will be easier in the future and we get better compile time checking through exhaustive matching....