[Feedback Poll] Where and how do you use Clippy

Where & how do you use Clippy, the static analyzer tool for Rust the most? The answer will help the Clippy team decide what to focus on! :heart:

Thanks for helping the project become better!

  • On my org's CI, as a test
  • Before committing/pushing my code, in my machine
  • On-save, in my IDE
  • Other (comment)
0 voters

All 3. CI is configured to fail if clippy is not happy, rust-analyzer is configured to use clippy to make suggestions and on bigger changes (or when I update rust version) I run it locally - just to get the results faster.

1 Like

All of the above, with “other” being via Bacon (the background code checker) in the Terminal. So kind-of-but-not-quite in my IDE.

1 Like

Unregularly, whenever I finish a task (new feature, or fixing a bug), mostly before I cut a new release. Sometimes when I find the time, I run clippy with all lints, disabling the ones I don't want to see at all one after another on the commandline, and looking through the others to see if they contain something useful.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.