From 76f65bdac4befc8e092f35fd3fb6dd92ea7ff119 Mon Sep 17 00:00:00 2001 From: Yorick van Klinken Date: Wed, 7 Aug 2024 16:29:06 +0200 Subject: [PATCH] chore: add .idea to .gitignore (#3169) Jetbrains IDEs create a `.idea` dir in each repository to store configurations (like `.vs` and `.vscode`). I'm aware that `.git/info/exclude` can be used as a localized .gitignore file or `~/..config/git/ignore` for global ignores, so I'll leave it up to the maintainers if this solution is ok. ## Changes: - Added `.idea` to `.gitignore` to prevent this dir from accidentally being committed. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1f805881e..16ec6d16c 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,7 @@ Thumbs.db # Build .vs/ +.idea/ build/ build-storybook/ bld/