.gitignore 3.0 KB

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