You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: