From 142b808cc3996e9a294c9bcf3ce0c63588c4adc0 Mon Sep 17 00:00:00 2001 From: Satoshi Okamoto <107277499+butcher73@users.noreply.github.com> Date: Sat, 10 Dec 2022 07:41:19 +0700 Subject: [PATCH] Update gitignore from standard template (#372) * Add .DS_Store to gitignore list for MacOS * Update gitignore fromstandard template * Update .gitignore remove Cargo.lock from gitignore file Co-authored-by: Matthias Seitz Co-authored-by: Satoshi Okamoto Co-authored-by: Matthias Seitz --- .gitignore | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ee44a96390..3433ce3912 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,17 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + + +# Generated by Intellij-based IDEs. .idea -target + +# Generated by MacOS +.DS_Store