rust-clippy/book/src/development
Josh Soref d2061faf9e Spelling
* applying
* binding
* complex
* constituent
* demonstrate
* desugaring
* exact
* expression
* for
* functionalities
* github
* implementation
* infers
* multiple conflicting traits
* mutable
* necessarily
* nightly
* nonexistent
* optional
* parameter
* reassignments
* resources
* substitution
* suggestion
* that
* that array is
* using the

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-04-23 10:52:27 -04:00
..
infrastructure Auto merge of #10574 - jyn514:update-docs, r=flip1995 2023-04-03 11:43:22 +00:00
proposals Spelling 2023-04-23 10:52:27 -04:00
adding_lints.md Fix broken links for Rust merge 2023-04-06 22:02:23 +02:00
basics.md Fix links in Clippy book 2023-04-11 14:43:47 +02:00
common_tools_writing_lints.md Gramar, and spelin kleanup 2023-03-30 15:31:14 -04:00
README.md Gramar, and spelin kleanup 2023-03-30 15:31:14 -04:00
type_checking.md Add "hir::Ty and ty::Ty" section 2023-04-08 17:14:55 +02:00

Clippy Development

Hello fellow Rustacean! If you made it here, you're probably interested in making Clippy better by contributing to it. In that case, welcome to the project!

Note: If you're just interested in using Clippy, there's nothing to see from this point onward, and you should return to one of the earlier chapters.

Getting started

If this is your first time contributing to Clippy, you should first read the Basics docs. This will explain the basics on how to get the source code and how to compile and test the code.

Writing code

If you have done the basic setup, it's time to start hacking.

The Adding lints chapter is a walk through on how to add a new lint to Clippy. This is also interesting if you just want to fix a lint, because it also covers how to test lints and gives an overview of the bigger picture.

If you want to add a new lint or change existing ones apart from bugfixing, it's also a good idea to give the stability guarantees and lint categories sections of the Clippy 1.0 RFC a quick read. The lint categories are also described earlier in this book.

Note: Some higher level things about contributing to Clippy are still covered in the CONTRIBUTING.md document. Some of those will be moved to the book over time, like:

  • Finding something to fix
  • IDE setup
  • High level overview on how Clippy works
  • Triage procedure
  • Bors and Homu