.gitignore 2.8 KB

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