Hacker News new | ask | show | jobs
by moosingin3space 3637 days ago
I haven't used nightly much, what all does Clippy do?
3 comments

It tells you about places where you can improve your code. Possible pitfalls, style issues, documentation issues, unidiomatic code, everything.

Its a developer tool so you can use rustup to switch to nightly to run clippy (and use stable otherwise) and not impose nightly on the rest of the people who use the project. We have plans for making clippy a tool that you can fetch via rustup without requiring nightly.

Check out Clippy online! Go do http://play.integer32.com/, paste in your code, click "Clippy".
It's a linter.