.gitignore 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. # Created by https://www.toptal.com/developers/gitignore/api/gradle,java,intellij,eclipse
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=gradle,java,intellij,eclipse
  3. ### IDEA ###
  4. .idea
  5. ### Eclipse ###
  6. .metadata
  7. bin/
  8. tmp/
  9. *.tmp
  10. *.bak
  11. *.swp
  12. *~.nib
  13. local.properties
  14. .settings/
  15. .loadpath
  16. .recommenders
  17. # External tool builders
  18. .externalToolBuilders/
  19. # Locally stored "Eclipse launch configurations"
  20. *.launch
  21. # PyDev specific (Python IDE for Eclipse)
  22. *.pydevproject
  23. # CDT-specific (C/C++ Development Tooling)
  24. .cproject
  25. # CDT- autotools
  26. .autotools
  27. # Java annotation processor (APT)
  28. .factorypath
  29. # PDT-specific (PHP Development Tools)
  30. .buildpath
  31. # sbteclipse plugin
  32. .target
  33. # Tern plugin
  34. .tern-project
  35. # TeXlipse plugin
  36. .texlipse
  37. # STS (Spring Tool Suite)
  38. .springBeans
  39. # Code Recommenders
  40. .recommenders/
  41. # Annotation Processing
  42. .apt_generated/
  43. .apt_generated_test/
  44. # Scala IDE specific (Scala & Java development for Eclipse)
  45. .cache-main
  46. .scala_dependencies
  47. .worksheet
  48. # Uncomment this line if you wish to ignore the project description file.
  49. # Typically, this file would be tracked if it contains build/dependency configurations:
  50. #.project
  51. ### Eclipse Patch ###
  52. # Spring Boot Tooling
  53. .sts4-cache/
  54. ### Intellij ###
  55. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  56. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  57. # User-specific stuff
  58. .idea/**/libraries-with-intellij-classes.xml
  59. .idea/**/workspace.xml
  60. .idea/**/tasks.xml
  61. .idea/**/usage.statistics.xml
  62. .idea/**/dictionaries
  63. .idea/**/shelf
  64. # Generated files
  65. .idea/**/contentModel.xml
  66. # Sensitive or high-churn files
  67. .idea/**/dataSources/
  68. .idea/**/dataSources.ids
  69. .idea/**/dataSources.local.xml
  70. .idea/**/sqlDataSources.xml
  71. .idea/**/dynamic.xml
  72. .idea/**/uiDesigner.xml
  73. .idea/**/dbnavigator.xml
  74. # Gradle
  75. .idea/**/gradle.xml
  76. .idea/**/libraries
  77. # Gradle and Maven with auto-import
  78. # When using Gradle or Maven with auto-import, you should exclude module files,
  79. # since they will be recreated, and may cause churn. Uncomment if using
  80. # auto-import.
  81. .idea/artifacts
  82. .idea/compiler.xml
  83. .idea/jarRepositories.xml
  84. .idea/modules.xml
  85. .idea/*.iml
  86. .idea/modules
  87. *.iml
  88. *.ipr
  89. # CMake
  90. cmake-build-*/
  91. # Mongo Explorer plugin
  92. .idea/**/mongoSettings.xml
  93. # File-based project format
  94. *.iws
  95. # IntelliJ
  96. out/
  97. # mpeltonen/sbt-idea plugin
  98. .idea_modules/
  99. # JIRA plugin
  100. atlassian-ide-plugin.xml
  101. # Cursive Clojure plugin
  102. .idea/replstate.xml
  103. # Crashlytics plugin (for Android Studio and IntelliJ)
  104. com_crashlytics_export_strings.xml
  105. crashlytics.properties
  106. crashlytics-build.properties
  107. fabric.properties
  108. # Editor-based Rest Client
  109. .idea/httpRequests
  110. # Android studio 3.1+ serialized cache file
  111. .idea/caches/build_file_checksums.ser
  112. ### Intellij Patch ###
  113. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  114. # *.iml
  115. # modules.xml
  116. # .idea/misc.xml
  117. # *.ipr
  118. # Sonarlint plugin
  119. .idea/**/sonarlint/
  120. # SonarQube Plugin
  121. .idea/**/sonarIssues.xml
  122. # Markdown Navigator plugin
  123. .idea/**/markdown-navigator.xml
  124. .idea/**/markdown-navigator-enh.xml
  125. .idea/**/markdown-navigator/
  126. # Cache file creation bug
  127. # See https://youtrack.jetbrains.com/issue/JBR-2257
  128. .idea/$CACHE_FILE$
  129. ### Java ###
  130. # Compiled class file
  131. *.class
  132. # Log file
  133. *.log
  134. # BlueJ files
  135. *.ctxt
  136. # Mobile Tools for Java (J2ME)
  137. .mtj.tmp/
  138. # Package Files #
  139. *.jar
  140. *.war
  141. *.nar
  142. *.ear
  143. *.zip
  144. *.tar.gz
  145. *.rar
  146. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  147. hs_err_pid*
  148. ### Gradle ###
  149. .gradle
  150. build/
  151. # Ignore Gradle GUI config
  152. gradle-app.setting
  153. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  154. !gradle-wrapper.jar
  155. # Cache of project
  156. .gradletasknamecache
  157. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  158. # gradle/wrapper/gradle-wrapper.properties
  159. ### Gradle Patch ###
  160. **/build/
  161. # End of https://www.toptal.com/developers/gitignore/api/gradle,java,intellij,eclipse