Skip to content

Commit 73764ab

Browse files
committed
Auto merge of rust-lang#5840 - flip1995:basics, r=phansch
Basic instruction for new contributors While answering a few questions to @AB1908, I realized, that our documentation could use some love. Especially the "Getting Started" part for new contributors. So I wrote together some instruction on how to get the toolchain and how to build and test Clippy. [Rendered](https://github.com/flip1995/rust-clippy/blob/basics/doc/basics.md) r? @phansch changelog: none
2 parents 61eab6e + 3a4cc9f commit 73764ab

File tree

3 files changed

+130
-22
lines changed

3 files changed

+130
-22
lines changed

CONTRIBUTING.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ High level approach:
3232

3333
1. Find something to fix/improve
3434
2. Change code (likely some file in `clippy_lints/src/`)
35-
3. Follow the instructions in the [docs for writing lints](doc/adding_lints.md) such as running the `setup-toolchain.sh` script
35+
3. Follow the instructions in the [Basics docs](doc/basics.md) such as running the `setup-toolchain.sh` script
3636
4. Run `cargo test` in the root directory and wiggle code until it passes
3737
5. Open a PR (also can be done after 2. if you run into problems)
3838

@@ -95,16 +95,16 @@ quick read.
9595

9696
## Getting code-completion for rustc internals to work
9797

98-
Unfortunately, [`rust-analyzer`][ra_homepage] does not (yet?) understand how Clippy uses compiler-internals
99-
using `extern crate` and it also needs to be able to read the source files of the rustc-compiler which are not
100-
available via a `rustup` component at the time of writing.
101-
To work around this, you need to have a copy of the [rustc-repo][rustc_repo] available which can be obtained via
102-
`git clone https://github.com/rust-lang/rust/`.
103-
Then you can run a `cargo dev` command to automatically make Clippy use the rustc-repo via path-dependencies
104-
which rust-analyzer will be able to understand.
105-
Run `cargo dev ra-setup --repo-path <repo-path>` where `<repo-path>` is an absolute path to the rustc repo
106-
you just cloned.
107-
The command will add path-dependencies pointing towards rustc-crates inside the rustc repo to
98+
Unfortunately, [`rust-analyzer`][ra_homepage] does not (yet?) understand how Clippy uses compiler-internals
99+
using `extern crate` and it also needs to be able to read the source files of the rustc-compiler which are not
100+
available via a `rustup` component at the time of writing.
101+
To work around this, you need to have a copy of the [rustc-repo][rustc_repo] available which can be obtained via
102+
`git clone https://github.com/rust-lang/rust/`.
103+
Then you can run a `cargo dev` command to automatically make Clippy use the rustc-repo via path-dependencies
104+
which rust-analyzer will be able to understand.
105+
Run `cargo dev ra-setup --repo-path <repo-path>` where `<repo-path>` is an absolute path to the rustc repo
106+
you just cloned.
107+
The command will add path-dependencies pointing towards rustc-crates inside the rustc repo to
108108
Clippys `Cargo.toml`s and should allow rust-analyzer to understand most of the types that Clippy uses.
109109
Just make sure to remove the dependencies again before finally making a pull request!
110110

doc/adding_lints.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,22 @@ because that's clearly a non-descriptive name.
2727

2828
## Setup
2929

30-
When working on Clippy, you will need the current git master version of rustc,
31-
which can change rapidly. Make sure you're working near rust-clippy's master,
32-
and use the `setup-toolchain.sh` script to configure the appropriate toolchain
33-
for the Clippy directory.
30+
See the [Basics](basics.md#get-the-code) documentation.
3431

3532
## Getting Started
3633

3734
There is a bit of boilerplate code that needs to be set up when creating a new
3835
lint. Fortunately, you can use the clippy dev tools to handle this for you. We
3936
are naming our new lint `foo_functions` (lints are generally written in snake
4037
case), and we don't need type information so it will have an early pass type
41-
(more on this later on). To get started on this lint you can run
42-
`cargo dev new_lint --name=foo_functions --pass=early --category=pedantic`
43-
(category will default to nursery if not provided). This command will create
44-
two files: `tests/ui/foo_functions.rs` and `clippy_lints/src/foo_functions.rs`,
45-
as well as run `cargo dev update_lints` to register the new lint. For cargo lints,
46-
two project hierarchies (fail/pass) will be created by default under `tests/ui-cargo`.
38+
(more on this later on). If you're not sure if the name you chose fits the lint,
39+
take a look at our [lint naming guidelines][lint_naming]. To get started on this
40+
lint you can run `cargo dev new_lint --name=foo_functions --pass=early
41+
--category=pedantic` (category will default to nursery if not provided). This
42+
command will create two files: `tests/ui/foo_functions.rs` and
43+
`clippy_lints/src/foo_functions.rs`, as well as run `cargo dev update_lints` to
44+
register the new lint. For cargo lints, two project hierarchies (fail/pass) will
45+
be created by default under `tests/ui-cargo`.
4746

4847
Next, we'll open up these files and add our lint!
4948

@@ -113,7 +112,7 @@ For cargo lints, the process of testing differs in that we are interested in
113112
the `Cargo.toml` manifest file. We also need a minimal crate associated
114113
with that manifest.
115114

116-
If our new lint is named e.g. `foo_categories`, after running `cargo dev new_lint`
115+
If our new lint is named e.g. `foo_categories`, after running `cargo dev new_lint`
117116
we will find by default two new crates, each with its manifest file:
118117

119118
* `tests/ui-cargo/foo_categories/fail/Cargo.toml`: this file should cause the new lint to raise an error.

doc/basics.md

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
# Basics for hacking on Clippy
2+
3+
This document explains the basics for hacking on Clippy. Besides others, this
4+
includes how to set-up the development environment, how to build and how to test
5+
Clippy. For a more in depth description on the codebase take a look at [Adding
6+
Lints] or [Common Tools].
7+
8+
[Adding Lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md
9+
[Common Tools]: https://github.com/rust-lang/rust-clippy/blob/master/doc/common_tools_writing_lints.md
10+
11+
- [Basics for hacking on Clippy](#basics-for-hacking-on-clippy)
12+
- [Get the code](#get-the-code)
13+
- [Setup](#setup)
14+
- [Building and Testing](#building-and-testing)
15+
- [`cargo dev`](#cargo-dev)
16+
17+
## Get the Code
18+
19+
First, make sure you have checked out the latest version of Clippy. If this is
20+
your first time working on Clippy, create a fork of the repository and clone it
21+
afterwards with the following command:
22+
23+
```bash
24+
git clone git@github.com:<your-username>/rust-clippy
25+
```
26+
27+
If you've already cloned Clippy in the past, update it to the latest version:
28+
29+
```bash
30+
# upstream has to be the remote of the rust-lang/rust-clippy repo
31+
git fetch upstream
32+
# make sure that you are on the master branch
33+
git checkout master
34+
# rebase your master branch on the upstream master
35+
git rebase upstream/master
36+
# push to the master branch of your fork
37+
git push
38+
```
39+
40+
## Setup
41+
42+
Next we need to setup the toolchain to compile Clippy. Since Clippy heavily
43+
relies on compiler internals it is build with the latest rustc master. To get
44+
this toolchain, you can just use the `setup-toolchain.sh` script or use
45+
`rustup-toolchain-install-master`:
46+
47+
```bash
48+
sh setup-toolchain.sh
49+
# OR
50+
cargo install rustup-toolchain-install-master
51+
# For better IDE integration also add `-c rustfmt -c rust-src` (optional)
52+
rustup-toolchain-install-master -f -n master -c rustc-dev -c llvm-tools
53+
rustup override set master
54+
```
55+
56+
## Building and Testing
57+
58+
Once the `master` toolchain is installed, you can build and test Clippy like
59+
every other Rust project:
60+
61+
```bash
62+
cargo build # builds Clippy
63+
cargo test # tests Clippy
64+
```
65+
66+
Since Clippy's test suite is pretty big, there are some commands that only run a
67+
subset of Clippy's tests:
68+
69+
```bash
70+
# only run UI tests
71+
cargo uitest
72+
# only run UI tests starting with `test_`
73+
TESTNAME="test_" cargo uitest
74+
# only run dogfood tests
75+
cargo test --test dogfood
76+
```
77+
78+
If the output of a [UI test] differs from the expected output, you can update the
79+
reference file with:
80+
81+
```bash
82+
sh tests/ui/update-all-references.sh
83+
```
84+
85+
For example, this is necessary, if you fix a typo in an error message of a lint
86+
or if you modify a test file to add a test case.
87+
88+
_Note:_ This command may update more files than you intended. In that case only
89+
commit the files you wanted to update.
90+
91+
[UI test]: https://rustc-dev-guide.rust-lang.org/tests/adding.html#guide-to-the-ui-tests
92+
93+
## `cargo dev`
94+
95+
Clippy has some dev tools to make working on Clippy more convenient. These tools
96+
can be accessed through the `cargo dev` command. Available tools are listed
97+
below. To get more information about these commands, just call them with
98+
`--help`.
99+
100+
```bash
101+
# formats the whole Clippy codebase and all tests
102+
cargo dev fmt
103+
# register or update lint names/groups/...
104+
cargo dev update_lints
105+
# create a new lint and register it
106+
cargo dev new_lint
107+
# (experimental) Setup Clippy to work with rust-analyzer
108+
cargo dev ra-setup
109+
```

0 commit comments

Comments
 (0)