1
0

.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### JetBrains template
  3. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
  4. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  5. # User-specific stuff:
  6. .idea/**/workspace.xml
  7. .idea/**/tasks.xml
  8. .idea/dictionaries
  9. # Sensitive or high-churn files:
  10. .idea/**/dataSources/
  11. .idea/**/dataSources.ids
  12. .idea/**/dataSources.xml
  13. .idea/**/dataSources.local.xml
  14. .idea/**/sqlDataSources.xml
  15. .idea/**/dynamic.xml
  16. .idea/**/uiDesigner.xml
  17. # Gradle:
  18. .idea/**/gradle.xml
  19. .idea/**/libraries
  20. # CMake
  21. cmake-build-debug/
  22. # Mongo Explorer plugin:
  23. .idea/**/mongoSettings.xml
  24. ## File-based project format:
  25. *.iws
  26. ## Plugin-specific files:
  27. # IntelliJ
  28. out/
  29. # mpeltonen/sbt-idea plugin
  30. .idea_modules/
  31. # JIRA plugin
  32. atlassian-ide-plugin.xml
  33. # Cursive Clojure plugin
  34. .idea/replstate.xml
  35. # Crashlytics plugin (for Android Studio and IntelliJ)
  36. com_crashlytics_export_strings.xml
  37. crashlytics.properties
  38. crashlytics-build.properties
  39. fabric.properties
  40. ### Java template
  41. # Compiled class file
  42. *.class
  43. # Log file
  44. *.log
  45. # BlueJ files
  46. *.ctxt
  47. # Mobile Tools for Java (J2ME)
  48. .mtj.tmp/
  49. # Package Files #
  50. *.jar
  51. *.war
  52. *.ear
  53. *.zip
  54. *.tar.gz
  55. *.rar
  56. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  57. hs_err_pid*
  58. ### Eclipse template
  59. .metadata
  60. bin/
  61. tmp/
  62. *.tmp
  63. *.bak
  64. *.swp
  65. *~.nib
  66. local.properties
  67. .settings/
  68. .loadpath
  69. .recommenders
  70. # External tool builders
  71. .externalToolBuilders/
  72. # Locally stored "Eclipse launch configurations"
  73. *.launch
  74. # PyDev specific (Python IDE for Eclipse)
  75. *.pydevproject
  76. # CDT-specific (C/C++ Development Tooling)
  77. .cproject
  78. # Java annotation processor (APT)
  79. .factorypath
  80. # PDT-specific (PHP Development Tools)
  81. .buildpath
  82. # sbteclipse plugin
  83. .target
  84. # Tern plugin
  85. .tern-project
  86. # TeXlipse plugin
  87. .texlipse
  88. # STS (Spring Tool Suite)
  89. .springBeans
  90. # Code Recommenders
  91. .recommenders/
  92. # Scala IDE specific (Scala & Java development for Eclipse)
  93. .cache-main
  94. .scala_dependencies
  95. .worksheet
  96. ### Example user template template
  97. ### Example user template
  98. # IntelliJ project files
  99. .idea
  100. *.iml
  101. out
  102. gen