From 9148b0cc57f4f1ba55c3d44f91bc2c13fa4330ea Mon Sep 17 00:00:00 2001 From: verytactical <186486509+verytactical@users.noreply.github.com> Date: Tue, 29 Oct 2024 13:42:32 +0400 Subject: [PATCH] refactor: add IDE folders to gitignore IDEs create folders that can easily be merged. While it's usually recommended to add these to local gitignore, because it's impossible to list all the possible IDEs, majority uses VSCode or Webstorm, and we can cover most cases by ignoring unwanted files from these IDEs. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index c87c9b3..1dd1eca 100644 --- a/.gitignore +++ b/.gitignore @@ -34,3 +34,6 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts + +.idea +.vscode