.gitignore 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. # Created by https://www.gitignore.io/api/osx,java,linux,windows,intellij,maven
  2. # Edit at https://www.gitignore.io/?templates=osx,java,linux,windows,intellij,maven
  3. ### Intellij ###
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # Generated files
  13. .idea/**/contentModel.xml
  14. # Sensitive or high-churn files
  15. .idea/**/dataSources/
  16. .idea/**/dataSources.ids
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/dbnavigator.xml
  22. # Gradle
  23. .idea/**/gradle.xml
  24. .idea/**/libraries
  25. # Gradle and Maven with auto-import
  26. # When using Gradle or Maven with auto-import, you should exclude module files,
  27. # since they will be recreated, and may cause churn. Uncomment if using
  28. # auto-import.
  29. # .idea/modules.xml
  30. # .idea/*.iml
  31. # .idea/modules
  32. # CMake
  33. cmake-build-*/
  34. # Mongo Explorer plugin
  35. .idea/**/mongoSettings.xml
  36. # File-based project format
  37. *.iws
  38. # IntelliJ
  39. out/
  40. # mpeltonen/sbt-idea plugin
  41. .idea_modules/
  42. # JIRA plugin
  43. atlassian-ide-plugin.xml
  44. # Cursive Clojure plugin
  45. .idea/replstate.xml
  46. # Crashlytics plugin (for Android Studio and IntelliJ)
  47. com_crashlytics_export_strings.xml
  48. crashlytics.properties
  49. crashlytics-build.properties
  50. fabric.properties
  51. # Editor-based Rest Client
  52. .idea/httpRequests
  53. # Android studio 3.1+ serialized cache file
  54. .idea/caches/build_file_checksums.ser
  55. ### Intellij Patch ###
  56. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  57. # *.iml
  58. # modules.xml
  59. # .idea/misc.xml
  60. # *.ipr
  61. # Sonarlint plugin
  62. .idea/sonarlint
  63. ### Java ###
  64. # Compiled class file
  65. *.class
  66. # Log file
  67. *.log
  68. # BlueJ files
  69. *.ctxt
  70. # Mobile Tools for Java (J2ME)
  71. .mtj.tmp/
  72. # Package Files #
  73. *.jar
  74. *.war
  75. *.nar
  76. *.ear
  77. *.zip
  78. *.tar.gz
  79. *.rar
  80. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  81. hs_err_pid*
  82. ### Linux ###
  83. *~
  84. # temporary files which can be created if a process still has a handle open of a deleted file
  85. .fuse_hidden*
  86. # KDE directory preferences
  87. .directory
  88. # Linux trash folder which might appear on any partition or disk
  89. .Trash-*
  90. # .nfs files are created when an open file is removed but is still being accessed
  91. .nfs*
  92. ### Maven ###
  93. target/
  94. pom.xml.tag
  95. pom.xml.releaseBackup
  96. pom.xml.versionsBackup
  97. pom.xml.next
  98. release.properties
  99. dependency-reduced-pom.xml
  100. buildNumber.properties
  101. .mvn/timing.properties
  102. .mvn/wrapper/maven-wrapper.jar
  103. ### OSX ###
  104. # General
  105. .DS_Store
  106. .AppleDouble
  107. .LSOverride
  108. # Icon must end with two \r
  109. Icon
  110. # Thumbnails
  111. ._*
  112. # Files that might appear in the root of a volume
  113. .DocumentRevisions-V100
  114. .fseventsd
  115. .Spotlight-V100
  116. .TemporaryItems
  117. .Trashes
  118. .VolumeIcon.icns
  119. .com.apple.timemachine.donotpresent
  120. # Directories potentially created on remote AFP share
  121. .AppleDB
  122. .AppleDesktop
  123. Network Trash Folder
  124. Temporary Items
  125. .apdisk
  126. ### Windows ###
  127. # Windows thumbnail cache files
  128. Thumbs.db
  129. ehthumbs.db
  130. ehthumbs_vista.db
  131. # Dump file
  132. *.stackdump
  133. # Folder config file
  134. [Dd]esktop.ini
  135. # Recycle Bin used on file shares
  136. $RECYCLE.BIN/
  137. # Windows Installer files
  138. *.cab
  139. *.msi
  140. *.msix
  141. *.msm
  142. *.msp
  143. # Windows shortcuts
  144. *.lnk
  145. # End of https://www.gitignore.io/api/osx,java,linux,windows,intellij,maven