Skip to content

Commit d859a17

Browse files
committed
lintcheck: update readme and remove the now redundant readme from clippy-dev
1 parent fac6da1 commit d859a17

File tree

3 files changed

+5
-90
lines changed

3 files changed

+5
-90
lines changed

clippy_dev/README.md

Lines changed: 0 additions & 77 deletions
This file was deleted.

lintcheck/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "lintcheck"
33
version = "0.0.1"
4-
authors = ["Matthias Krüger <[email protected]>"]
4+
authors = ["The Rust Clippy Developers"]
55
edition = "2018"
66

77
[dependencies]

lintcheck/README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,19 @@
1-
# Clippy Dev Tool
2-
3-
The Clippy Dev Tool is a tool to ease Clippy development, similar to `rustc`s
4-
`x.py`.
5-
6-
Functionalities (incomplete):
7-
8-
## `lintcheck`
1+
## `cargo lintcheck`
92

103
Runs clippy on a fixed set of crates read from
11-
`clippy_dev/lintcheck_crates.toml` and saves logs of the lint warnings into the
4+
`lintcheck/lintcheck_crates.toml` and saves logs of the lint warnings into the
125
repo. We can then check the diff and spot new or disappearing warnings.
136

147
From the repo root, run:
158

169
```
17-
cargo run --target-dir clippy_dev/target --package clippy_dev \
18-
--bin clippy_dev --manifest-path clippy_dev/Cargo.toml --features lintcheck -- lintcheck
10+
cargo run --target-dir lintcheck/target --manifest-path lintcheck/Cargo.toml
1911
```
2012

2113
or
2214

2315
```
24-
cargo dev-lintcheck
16+
cargo lintcheck
2517
```
2618

2719
By default the logs will be saved into

0 commit comments

Comments
 (0)