.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. # DIY
  2. target/
  3. # svn
  4. .svn/
  5. # Linux System
  6. *~
  7. # KDE directory preferences
  8. .directory
  9. # Linux trash folder which might appear on any partition or disk
  10. .Trash-*
  11. # Windows System
  12. # Windows image file caches
  13. Thumbs.db
  14. ehthumbs.db
  15. # Folder config file
  16. Desktop.ini
  17. # Recycle Bin used on file shares
  18. $RECYCLE.BIN/
  19. # Windows Installer files
  20. *.cab
  21. *.msi
  22. *.msm
  23. *.msp
  24. # Windows shortcuts
  25. *.lnk
  26. # OSX System
  27. .DS_Store
  28. .AppleDouble
  29. .LSOverride
  30. # Icon must end with two \r
  31. Icon
  32. # Thumbnails
  33. ._*
  34. # Files that might appear in the root of a volume
  35. .DocumentRevisions-V100
  36. .fseventsd
  37. .Spotlight-V100
  38. .TemporaryItems
  39. .Trashes
  40. .VolumeIcon.icns
  41. # Directories potentially created on remote AFP share
  42. .AppleDB
  43. .AppleDesktop
  44. Network Trash Folder
  45. Temporary Items
  46. .apdisk
  47. # Eclipse
  48. *.pydevproject
  49. .metadata
  50. .gradle
  51. bin/
  52. tmp/
  53. *.tmp
  54. *.bak
  55. *.swp
  56. *~.nib
  57. local.properties
  58. .settings/
  59. .loadpath
  60. # Eclipse Core
  61. .project
  62. # External tool builders
  63. .externalToolBuilders/
  64. # Locally stored "Eclipse launch configurations"
  65. *.launch
  66. # CDT-specific
  67. .cproject
  68. # JDT-specific (Eclipse Java Development Tools)
  69. .classpath
  70. # Java annotation processor (APT)
  71. .factorypath
  72. # PDT-specific
  73. .buildpath
  74. # sbteclipse plugin
  75. .target
  76. # TeXlipse plugin
  77. .texlipse
  78. # JetBrains
  79. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  80. *.iml
  81. ## Directory-based project format:
  82. .idea/
  83. # if you remove the above rule, at least ignore the following:
  84. # User-specific stuff:
  85. # .idea/workspace.xml
  86. # .idea/tasks.xml
  87. # .idea/dictionaries
  88. # Sensitive or high-churn files:
  89. # .idea/dataSources.ids
  90. # .idea/dataSources.xml
  91. # .idea/sqlDataSources.xml
  92. # .idea/dynamic.xml
  93. # .idea/uiDesigner.xml
  94. # Gradle:
  95. # .idea/gradle.xml
  96. # .idea/libraries
  97. # Mongo Explorer plugin:
  98. # .idea/mongoSettings.xml
  99. ## File-based project format:
  100. *.ipr
  101. *.iws
  102. ## Plugin-specific files:
  103. # IntelliJ
  104. /out/
  105. # mpeltonen/sbt-idea plugin
  106. .idea_modules/
  107. # JIRA plugin
  108. atlassian-ide-plugin.xml
  109. # Crashlytics plugin (for Android Studio and IntelliJ)
  110. com_crashlytics_export_strings.xml
  111. crashlytics.properties
  112. crashlytics-build.properties
  113. # JAVA
  114. *.class
  115. # Mobile Tools for Java (J2ME)
  116. .mtj.tmp/
  117. # Package Files #
  118. *.jar
  119. *.war
  120. *.ear
  121. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  122. hs_err_pid*
  123. #Maven
  124. target/
  125. **/target/
  126. pom.xml.tag
  127. pom.xml.releaseBackup
  128. pom.xml.versionsBackup
  129. pom.xml.next
  130. release.properties
  131. dependency-reduced-pom.xml
  132. buildNumber.properties
  133. .mvn/timing.properties
  134. logs/