Open
Description
One thing that would be good to have is to check all Rust demos with clippy.
Clippy both ensures that they build correctly, but also acts as a linter.
Looking at the code it seems like we currently lint with language servers.
That is possible with rust-analyzer, but it's also wasteful compared to just running cargo clippy
directly.
What I think should be done:
- Loop through each demo
- Copy all relevant Rust files into the demo
- Run cargo clippy (make sure that target dir is set correctly)
- Remove copied Rust files again