diff options
author | Sergey Chupov <scadgek@live.com> | 2019-05-12 16:23:05 +0300 |
---|---|---|
committer | Brendan Forster <brendan@github.com> | 2019-05-12 10:23:05 -0300 |
commit | b5aa92c05f3659fcb5910836199ce836291158be (patch) | |
tree | 240fc29a96d8b61f8ba2967dee8ffc99ed98187d /Global | |
parent | 679f51c6c98550dbe1dced02f82b9386cc45c9de (diff) | |
download | gitignore-b5aa92c05f3659fcb5910836199ce836291158be.tar.gz gitignore-b5aa92c05f3659fcb5910836199ce836291158be.zip |
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.
Diffstat (limited to 'Global')
-rw-r--r-- | Global/JetBrains.gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
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-*/ |