Auto merge of #8709 - matthiaskrgr:lintcheckfix, r=llogiq

lintcheck: fix --fix

looks like --allow-no-vcs does no longer exist(?)

changelog: none
This commit is contained in:
bors 2022-04-16 10:22:08 +00:00
commit 0f4f9ecdb3

View file

@ -306,7 +306,7 @@ impl Crate {
let shared_target_dir = clippy_project_root().join("target/lintcheck/shared_target_dir");
let mut args = if fix {
vec!["--fix", "--allow-no-vcs", "--"]
vec!["--fix", "--"]
} else {
vec!["--", "--message-format=json", "--"]
};