From b5aa92c05f3659fcb5910836199ce836291158be Mon Sep 17 00:00:00 2001 From: Sergey Chupov Date: Sun, 12 May 2019 16:23:05 +0300 Subject: [PATCH] Add ignores for file-based projects (#2902) When IntelliJ project is created as a file-based (i.e. without `.idea` folder, but with `.iws`, `.iml` and `.ipr` files), and this is a Gradle or Maven project with auto-import, should ignore them as well for the same reason we ignore `.idea` folder content in that case. --- Global/JetBrains.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index 72f4d988..e80f46b8 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -31,6 +31,8 @@ # .idea/modules.xml # .idea/*.iml # .idea/modules +# *.iml +# *.ipr # CMake cmake-build-*/ -- 2.39.5