From 5b35bd9c3e2c4c05304ad54a1ba4164e2740a7b5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= <matthias.krueger@famsik.de>
Date: Sat, 16 Apr 2022 00:56:28 +0200
Subject: [PATCH] lintcheck: fix --fix

looks like --allow-no-vcs does no longer exist(?)
---
 lintcheck/src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lintcheck/src/main.rs b/lintcheck/src/main.rs
index 491527c95f8..816efbdaedf 100644
--- a/lintcheck/src/main.rs
+++ b/lintcheck/src/main.rs
@@ -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", "--"]
         };