From 4734bc015029d83c6b71620e8481583a0d4e8065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Malo=20Jaffr=C3=A9?= Date: Fri, 20 Oct 2017 23:20:44 +0200 Subject: [PATCH] Ignore Cargo.lock in .gitignore Since the merge of #2146, `Cargo.lock` is no longer checked in the git repository, but `cargo` generates it anyway, if we are not in the main rust repository. Ignore it to avoid eventual confusion when contributing directly to clippy. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index dbb5a66e469..64d0c25752d 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ out *.exe # Generated by Cargo +Cargo.lock /target/ /clippy_lints/target/