From 262ffc061dbd6513e7004eb29fd95e0ebe5f0eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn?= Date: Sat, 9 Nov 2024 00:09:58 +0100 Subject: [PATCH] add the ".idea" folder to gitignore (#71) * add the ".idea" folder to gitignore * Also ignore `.DS_Store` this is a macOS specific file that needs to be ignored as well --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 15e0fe1..f1398ee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ Cargo.lock target/ -.vscode/ \ No newline at end of file +.vscode/ +.idea/ + +.DS_Store