.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. ignored/
  2. target/
  3. logs/
  4. .vscode/### Java template
  5. # Compiled class file
  6. *.class
  7. # Log file
  8. *.log
  9. # BlueJ files
  10. *.ctxt
  11. # Mobile Tools for Java (J2ME)
  12. .mtj.tmp/
  13. # Package Files #
  14. *.jar
  15. *.war
  16. *.nar
  17. *.ear
  18. *.zip
  19. *.tar.gz
  20. *.rar
  21. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  22. hs_err_pid*
  23. ### VisualStudioCode template
  24. .vscode/*
  25. !.vscode/settings.json
  26. !.vscode/tasks.json
  27. !.vscode/launch.json
  28. !.vscode/extensions.json
  29. *.code-workspace
  30. # Local History for Visual Studio Code
  31. .history/
  32. ### JetBrains template
  33. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  34. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  35. # User-specific stuff
  36. .idea/**/workspace.xml
  37. .idea/**/tasks.xml
  38. .idea/**/usage.statistics.xml
  39. .idea/**/dictionaries
  40. .idea/**/shelf
  41. # Generated files
  42. .idea/**/contentModel.xml
  43. # Sensitive or high-churn files
  44. .idea/**/dataSources/
  45. .idea/**/dataSources.ids
  46. .idea/**/dataSources.local.xml
  47. .idea/**/sqlDataSources.xml
  48. .idea/**/dynamic.xml
  49. .idea/**/uiDesigner.xml
  50. .idea/**/dbnavigator.xml
  51. # Gradle
  52. .idea/**/gradle.xml
  53. .idea/**/libraries
  54. # Gradle and Maven with auto-import
  55. # When using Gradle or Maven with auto-import, you should exclude module files,
  56. # since they will be recreated, and may cause churn. Uncomment if using
  57. # auto-import.
  58. # .idea/artifacts
  59. # .idea/compiler.xml
  60. # .idea/jarRepositories.xml
  61. # .idea/modules.xml
  62. # .idea/*.iml
  63. # .idea/modules
  64. # *.iml
  65. # *.ipr
  66. # CMake
  67. cmake-build-*/
  68. # Mongo Explorer plugin
  69. .idea/**/mongoSettings.xml
  70. # File-based project format
  71. *.iws
  72. # IntelliJ
  73. out/
  74. # mpeltonen/sbt-idea plugin
  75. .idea_modules/
  76. # JIRA plugin
  77. atlassian-ide-plugin.xml
  78. # Cursive Clojure plugin
  79. .idea/replstate.xml
  80. # Crashlytics plugin (for Android Studio and IntelliJ)
  81. com_crashlytics_export_strings.xml
  82. crashlytics.properties
  83. crashlytics-build.properties
  84. fabric.properties
  85. # Editor-based Rest Client
  86. .idea/httpRequests
  87. # Android studio 3.1+ serialized cache file
  88. .idea/caches/build_file_checksums.ser
  89. ### Eclipse template
  90. .metadata
  91. bin/
  92. tmp/
  93. *.tmp
  94. *.bak
  95. *.swp
  96. *~.nib
  97. local.properties
  98. .settings/
  99. .loadpath
  100. .recommenders
  101. # External tool builders
  102. .externalToolBuilders/
  103. # Locally stored "Eclipse launch configurations"
  104. *.launch
  105. # PyDev specific (Python IDE for Eclipse)
  106. *.pydevproject
  107. # CDT-specific (C/C++ Development Tooling)
  108. .cproject
  109. # CDT- autotools
  110. .autotools
  111. # Java annotation processor (APT)
  112. .factorypath
  113. # PDT-specific (PHP Development Tools)
  114. .buildpath
  115. # sbteclipse plugin
  116. .target
  117. # Tern plugin
  118. .tern-project
  119. # TeXlipse plugin
  120. .texlipse
  121. # STS (Spring Tool Suite)
  122. .springBeans
  123. # Code Recommenders
  124. .recommenders/
  125. # Annotation Processing
  126. .apt_generated/
  127. .apt_generated_test/
  128. # Scala IDE specific (Scala & Java development for Eclipse)
  129. .cache-main
  130. .scala_dependencies
  131. .worksheet
  132. # Uncomment this line if you wish to ignore the project description file.
  133. # Typically, this file would be tracked if it contains build/dependency configurations:
  134. #.project
  135. ### Example user template template
  136. ### Example user template
  137. # IntelliJ project files
  138. .idea
  139. *.iml
  140. out
  141. gen