.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # ---> Java
  2. *.class
  3. # Mobile Tools for Java (J2ME)
  4. .mtj.tmp/
  5. # Package Files #
  6. *.jar
  7. *.war
  8. *.ear
  9. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  10. hs_err_pid*
  11. # ---> Eclipse
  12. *.pydevproject
  13. .metadata
  14. .gradle
  15. bin/
  16. tmp/
  17. *.tmp
  18. *.bak
  19. *.swp
  20. *~.nib
  21. local.properties
  22. .settings/
  23. .loadpath
  24. # Eclipse Core
  25. .project
  26. # External tool builders
  27. .externalToolBuilders/
  28. # Locally stored "Eclipse launch configurations"
  29. *.launch
  30. # CDT-specific
  31. .cproject
  32. # JDT-specific (Eclipse Java Development Tools)
  33. .classpath
  34. # Java annotation processor (APT)
  35. .factorypath
  36. # PDT-specific
  37. .buildpath
  38. # sbteclipse plugin
  39. .target
  40. # TeXlipse plugin
  41. .texlipse
  42. # ---> JetBrains
  43. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  44. *.iml
  45. ## Directory-based project format:
  46. .idea/
  47. # if you remove the above rule, at least ignore the following:
  48. # User-specific stuff:
  49. # .idea/workspace.xml
  50. # .idea/tasks.xml
  51. # .idea/dictionaries
  52. # Sensitive or high-churn files:
  53. # .idea/dataSources.ids
  54. # .idea/dataSources.xml
  55. # .idea/sqlDataSources.xml
  56. # .idea/dynamic.xml
  57. # .idea/uiDesigner.xml
  58. # Gradle:
  59. # .idea/gradle.xml
  60. # .idea/libraries
  61. # Mongo Explorer plugin:
  62. # .idea/mongoSettings.xml
  63. ## File-based project format:
  64. *.ipr
  65. *.iws
  66. ## Plugin-specific files:
  67. # IntelliJ
  68. /out/
  69. # mpeltonen/sbt-idea plugin
  70. .idea_modules/
  71. # JIRA plugin
  72. atlassian-ide-plugin.xml
  73. # Crashlytics plugin (for Android Studio and IntelliJ)
  74. com_crashlytics_export_strings.xml
  75. crashlytics.properties
  76. crashlytics-build.properties
  77. #Svn
  78. .svn/
  79. #log
  80. *.log
  81. logs/
  82. *.log.*
  83. #target
  84. target/