.gitignore 3.9 KB

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