.gitignore 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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/**/workspace.xml
  57. .idea/**/tasks.xml
  58. .idea/**/usage.statistics.xml
  59. .idea/**/dictionaries
  60. .idea/**/shelf
  61. # Generated files
  62. .idea/**/contentModel.xml
  63. # Sensitive or high-churn files
  64. .idea/**/dataSources/
  65. .idea/**/dataSources.ids
  66. .idea/**/dataSources.local.xml
  67. .idea/**/sqlDataSources.xml
  68. .idea/**/dynamic.xml
  69. .idea/**/uiDesigner.xml
  70. .idea/**/dbnavigator.xml
  71. # Gradle
  72. .idea/**/gradle.xml
  73. .idea/**/libraries
  74. # Gradle and Maven with auto-import
  75. # When using Gradle or Maven with auto-import, you should exclude module files,
  76. # since they will be recreated, and may cause churn. Uncomment if using
  77. # auto-import.
  78. .idea/artifacts
  79. .idea/compiler.xml
  80. .idea/jarRepositories.xml
  81. .idea/modules.xml
  82. .idea/*.iml
  83. .idea/modules
  84. *.iml
  85. *.ipr
  86. # CMake
  87. cmake-build-*/
  88. # Mongo Explorer plugin
  89. .idea/**/mongoSettings.xml
  90. # File-based project format
  91. *.iws
  92. # IntelliJ
  93. out/
  94. # mpeltonen/sbt-idea plugin
  95. .idea_modules/
  96. # JIRA plugin
  97. atlassian-ide-plugin.xml
  98. # Cursive Clojure plugin
  99. .idea/replstate.xml
  100. # Crashlytics plugin (for Android Studio and IntelliJ)
  101. com_crashlytics_export_strings.xml
  102. crashlytics.properties
  103. crashlytics-build.properties
  104. fabric.properties
  105. # Editor-based Rest Client
  106. .idea/httpRequests
  107. # Android studio 3.1+ serialized cache file
  108. .idea/caches/build_file_checksums.ser
  109. ### Intellij Patch ###
  110. # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  111. # *.iml
  112. # modules.xml
  113. # .idea/misc.xml
  114. # *.ipr
  115. # Sonarlint plugin
  116. .idea/**/sonarlint/
  117. # SonarQube Plugin
  118. .idea/**/sonarIssues.xml
  119. # Markdown Navigator plugin
  120. .idea/**/markdown-navigator.xml
  121. .idea/**/markdown-navigator-enh.xml
  122. .idea/**/markdown-navigator/
  123. # Cache file creation bug
  124. # See https://youtrack.jetbrains.com/issue/JBR-2257
  125. .idea/$CACHE_FILE$
  126. ### Java ###
  127. # Compiled class file
  128. *.class
  129. # Log file
  130. *.log
  131. # BlueJ files
  132. *.ctxt
  133. # Mobile Tools for Java (J2ME)
  134. .mtj.tmp/
  135. # Package Files #
  136. *.jar
  137. *.war
  138. *.nar
  139. *.ear
  140. *.zip
  141. *.tar.gz
  142. *.rar
  143. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  144. hs_err_pid*
  145. ### Gradle ###
  146. .gradle
  147. build/
  148. # Ignore Gradle GUI config
  149. gradle-app.setting
  150. # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
  151. !gradle-wrapper.jar
  152. # Cache of project
  153. .gradletasknamecache
  154. # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
  155. # gradle/wrapper/gradle-wrapper.properties
  156. ### Gradle Patch ###
  157. **/build/
  158. # End of https://www.toptal.com/developers/gitignore/api/gradle,java,intellij,eclipse