2021-03-12 08:30:50 -06:00
|
|
|
## `cargo lintcheck`
|
2021-02-25 04:25:22 -06:00
|
|
|
|
2024-06-13 05:30:48 -05:00
|
|
|
Runs Clippy on a fixed set of crates read from
|
2021-03-12 08:30:50 -06:00
|
|
|
`lintcheck/lintcheck_crates.toml` and saves logs of the lint warnings into the
|
2021-02-25 04:25:22 -06:00
|
|
|
repo. We can then check the diff and spot new or disappearing warnings.
|
2021-02-11 08:04:38 -06:00
|
|
|
|
|
|
|
From the repo root, run:
|
2021-02-25 04:25:22 -06:00
|
|
|
|
|
|
|
```
|
2024-07-11 08:44:03 -05:00
|
|
|
cargo lintcheck
|
2021-02-25 04:25:22 -06:00
|
|
|
```
|
|
|
|
|
2021-02-11 08:04:38 -06:00
|
|
|
or
|
2021-02-25 04:25:22 -06:00
|
|
|
|
|
|
|
```
|
2024-07-11 08:44:03 -05:00
|
|
|
cargo run --target-dir lintcheck/target --manifest-path lintcheck/Cargo.toml
|
2021-02-25 04:25:22 -06:00
|
|
|
```
|
2021-02-11 08:04:38 -06:00
|
|
|
|
2023-04-11 08:31:08 -05:00
|
|
|
By default, the logs will be saved into
|
2021-02-25 04:25:22 -06:00
|
|
|
`lintcheck-logs/lintcheck_crates_logs.txt`.
|
2021-02-11 08:04:38 -06:00
|
|
|
|
2021-02-25 04:25:22 -06:00
|
|
|
You can set a custom sources.toml by adding `--crates-toml custom.toml` or using
|
|
|
|
`LINTCHECK_TOML="custom.toml"` where `custom.toml` must be a relative path from
|
|
|
|
the repo root.
|
2021-02-11 08:04:38 -06:00
|
|
|
|
|
|
|
The results will then be saved to `lintcheck-logs/custom_logs.toml`.
|
|
|
|
|
2023-03-10 03:53:50 -06:00
|
|
|
The `custom.toml` file may be built using <https://crates.io> recently most
|
2024-06-27 11:56:04 -05:00
|
|
|
downloaded crates by using `cargo lintcheck popular`. For example, to retrieve
|
|
|
|
the 200 recently most downloaded crates:
|
2023-03-10 03:53:50 -06:00
|
|
|
|
|
|
|
```
|
2024-06-27 11:56:04 -05:00
|
|
|
cargo lintcheck popular -n 200 custom.toml
|
2023-03-10 03:53:50 -06:00
|
|
|
```
|
|
|
|
|
2024-07-11 08:44:03 -05:00
|
|
|
> Note: Lintcheck isn't sandboxed. Only use it to check crates that you trust or
|
|
|
|
> sandbox it manually.
|
2023-03-10 03:53:50 -06:00
|
|
|
|
2021-02-25 04:25:22 -06:00
|
|
|
### Configuring the Crate Sources
|
|
|
|
|
|
|
|
The sources to check are saved in a `toml` file. There are three types of
|
|
|
|
sources.
|
|
|
|
|
|
|
|
1. Crates-io Source
|
|
|
|
|
|
|
|
```toml
|
|
|
|
bitflags = {name = "bitflags", versions = ['1.2.1']}
|
|
|
|
```
|
|
|
|
Requires a "name" and one or multiple "versions" to be checked.
|
|
|
|
|
|
|
|
2. `git` Source
|
|
|
|
````toml
|
|
|
|
puffin = {name = "puffin", git_url = "https://github.com/EmbarkStudios/puffin", git_hash = "02dd4a3"}
|
|
|
|
````
|
|
|
|
Requires a name, the url to the repo and unique identifier of a commit,
|
|
|
|
branch or tag which is checked out before linting. There is no way to always
|
|
|
|
check `HEAD` because that would lead to changing lint-results as the repo
|
|
|
|
would get updated. If `git_url` or `git_hash` is missing, an error will be
|
|
|
|
thrown.
|
|
|
|
|
|
|
|
3. Local Dependency
|
|
|
|
```toml
|
|
|
|
clippy = {name = "clippy", path = "/home/user/clippy"}
|
|
|
|
```
|
|
|
|
For when you want to add a repository that is not published yet.
|
|
|
|
|
|
|
|
#### Command Line Options (optional)
|
|
|
|
|
|
|
|
```toml
|
2024-07-11 08:44:03 -05:00
|
|
|
clap = {name = "clap", versions = ['4.5.8'], options = ['-Fderive']}
|
2021-02-25 04:25:22 -06:00
|
|
|
```
|
|
|
|
|
|
|
|
It is possible to specify command line options for each crate. This makes it
|
2024-07-11 08:44:03 -05:00
|
|
|
possible to enable or disable features.
|
2021-03-12 08:30:50 -06:00
|
|
|
|
|
|
|
### Fix mode
|
2022-10-06 02:44:38 -05:00
|
|
|
You can run `cargo lintcheck --fix` which will run Clippy with `--fix` and
|
2023-05-05 10:45:49 -05:00
|
|
|
print a warning if Clippy's suggestions fail to apply (if the resulting code does not build).
|
2021-03-12 08:30:50 -06:00
|
|
|
This lets us spot bad suggestions or false positives automatically in some cases.
|
|
|
|
|
2023-05-05 10:45:49 -05:00
|
|
|
> Note: Fix mode implies `--all-targets`, so it can fix as much code as it can.
|
|
|
|
|
2024-06-13 05:30:48 -05:00
|
|
|
Please note that the target dir should be cleaned afterwards since Clippy will modify
|
2021-03-12 08:30:50 -06:00
|
|
|
the downloaded sources which can lead to unexpected results when running lintcheck again afterwards.
|
2022-10-06 02:44:38 -05:00
|
|
|
|
|
|
|
### Recursive mode
|
|
|
|
You can run `cargo lintcheck --recursive` to also run Clippy on the dependencies
|
|
|
|
of the crates listed in the crates source `.toml`. e.g. adding `rand 0.8.5`
|
|
|
|
would also lint `rand_core`, `rand_chacha`, etc.
|
|
|
|
|
|
|
|
Particularly slow crates in the dependency graph can be ignored using
|
|
|
|
`recursive.ignore`:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[crates]
|
|
|
|
cargo = {name = "cargo", versions = ['0.64.0']}
|
|
|
|
|
|
|
|
[recursive]
|
|
|
|
ignore = [
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
```
|