From 7b29598bc1d0835606a70bb038024d289a5194dd Mon Sep 17 00:00:00 2001 From: Oskar Manhart <52569953+oskardotglobal@users.noreply.github.com> Date: Mon, 24 Jul 2023 18:04:45 +0200 Subject: [PATCH] feat: add ide config to gitignore --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bac0002..df3220d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,8 @@ target/ # The library shouldn't decide about the exact versions of # its dependencies, but let the downstream crate decide. -Cargo.lock \ No newline at end of file +Cargo.lock + +# We don't want to commit IDE configuration files. +.idea/ +.vscode/ \ No newline at end of file