lintcheck: fix --fix

looks like --allow-no-vcs does no longer exist(?)
This commit is contained in:
Matthias Krüger 2022-04-16 00:56:28 +02:00
parent 9938daf5bc
commit 5b35bd9c3e

View File

@ -306,7 +306,7 @@ fn run_clippy_lints(
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", "--"]
};