diff options
author | Jarl Gullberg <Jarl.Gullberg@gmail.com> | 2017-01-15 00:06:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-15 00:06:56 +0100 |
commit | d8b46e7d2d0f37a736ebd123cb2e4c02f8386df9 (patch) | |
tree | c4e6b6cf6ec30bc71496827d32969abaf3e885ff /Global/JetBrains.gitignore | |
parent | a98a0444694f30e52fb6eef9aec08e9b5e211a44 (diff) | |
download | gitignore-d8b46e7d2d0f37a736ebd123cb2e4c02f8386df9.tar.gz gitignore-d8b46e7d2d0f37a736ebd123cb2e4c02f8386df9.zip |
Update JetBrains.gitignore
In newer versions of the IntelliJ platform (such as the one used for Rider), the .idea files are now placed in a subdirectory of the same, named after the current project (such as ".idea/.idea.Everlook/.idea/workspace.xml"). Adding a double-star pattern to these folder rules will also ignore these new files and maintain backwards compatibility with previous revisions of this file.
Diffstat (limited to 'Global/JetBrains.gitignore')
-rw-r--r-- | Global/JetBrains.gitignore | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index e375c744..401fee15 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -2,24 +2,24 @@ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # User-specific stuff: -.idea/workspace.xml -.idea/tasks.xml +.idea/**/workspace.xml +.idea/**/tasks.xml # Sensitive or high-churn files: -.idea/dataSources/ -.idea/dataSources.ids -.idea/dataSources.xml -.idea/dataSources.local.xml -.idea/sqlDataSources.xml -.idea/dynamic.xml -.idea/uiDesigner.xml +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.xml +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml # Gradle: -.idea/gradle.xml -.idea/libraries +.idea/**/gradle.xml +.idea/**/libraries # Mongo Explorer plugin: -.idea/mongoSettings.xml +.idea/**/mongoSettings.xml ## File-based project format: *.iws |