mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-11 16:15:03 +00:00
Fix small mistakes
This commit is contained in:
parent
526f02ef05
commit
9015884325
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lintcheck"
|
name = "lintcheck"
|
||||||
version = "0.0.1"
|
version = "0.0.1"
|
||||||
description = "tool to monitor impact of changes in Clippys lints on a part of the ecosystem"
|
description = "tool to monitor impact of changes in Clippy's lints on a part of the ecosystem"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
repository = "https://github.com/rust-lang/rust-clippy"
|
repository = "https://github.com/rust-lang/rust-clippy"
|
||||||
|
@ -70,7 +70,7 @@ is explicitly specified in the options.
|
|||||||
|
|
||||||
### Fix mode
|
### Fix mode
|
||||||
You can run `./lintcheck/target/debug/lintcheck --fix` which will run Clippy with `--fix` and
|
You can run `./lintcheck/target/debug/lintcheck --fix` which will run Clippy with `--fix` and
|
||||||
print a warning if Clippys suggestions fail to apply (if the resulting code does not build).
|
print a warning if Clippy's suggestions fail to apply (if the resulting code does not build).
|
||||||
This lets us spot bad suggestions or false positives automatically in some cases.
|
This lets us spot bad suggestions or false positives automatically in some cases.
|
||||||
|
|
||||||
Please note that the target dir should be cleaned afterwards since clippy will modify
|
Please note that the target dir should be cleaned afterwards since clippy will modify
|
||||||
|
@ -545,7 +545,7 @@ fn lintcheck_needs_rerun(lintcheck_logs_path: &Path) -> bool {
|
|||||||
fn main() {
|
fn main() {
|
||||||
// assert that we launch lintcheck from the repo root (via cargo lintcheck)
|
// assert that we launch lintcheck from the repo root (via cargo lintcheck)
|
||||||
if std::fs::metadata("lintcheck/Cargo.toml").is_err() {
|
if std::fs::metadata("lintcheck/Cargo.toml").is_err() {
|
||||||
eprintln!("lintcheck needs to be run from clippys repo root!\nUse `cargo lintcheck` alternatively.");
|
eprintln!("lintcheck needs to be run from clippy's repo root!\nUse `cargo lintcheck` alternatively.");
|
||||||
std::process::exit(3);
|
std::process::exit(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -586,7 +586,7 @@ fn main() {
|
|||||||
.map(|o| String::from_utf8_lossy(&o.stdout).into_owned())
|
.map(|o| String::from_utf8_lossy(&o.stdout).into_owned())
|
||||||
.expect("could not get clippy version!");
|
.expect("could not get clippy version!");
|
||||||
|
|
||||||
// download and extract the crates, then run clippy on them and collect clippys warnings
|
// download and extract the crates, then run clippy on them and collect clippy's warnings
|
||||||
// flatten into one big list of warnings
|
// flatten into one big list of warnings
|
||||||
|
|
||||||
let crates = read_crates(&config.sources_toml_path);
|
let crates = read_crates(&config.sources_toml_path);
|
||||||
|
Loading…
Reference in New Issue
Block a user