.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. # ---> Android
  2. # Built application files
  3. *.apk
  4. *.ap_
  5. # Files for the Dalvik VM
  6. *.dex
  7. # Java class files
  8. *.class
  9. # Generated files
  10. bin/
  11. gen/
  12. # Gradle files
  13. .gradle/
  14. build/
  15. # Local configuration file (sdk path, etc)
  16. local.properties
  17. # Proguard folder generated by Eclipse
  18. proguard/
  19. # Log Files
  20. *.log
  21. # Android Studio Navigation editor temp files
  22. .navigation/
  23. # Android Studio captures folder
  24. captures/
  25. # ---> Linux
  26. *~
  27. # KDE directory preferences
  28. .directory
  29. # Linux trash folder which might appear on any partition or disk
  30. .Trash-*
  31. # ---> Windows
  32. # Windows image file caches
  33. Thumbs.db
  34. ehthumbs.db
  35. # Folder config file
  36. Desktop.ini
  37. # Recycle Bin used on file shares
  38. $RECYCLE.BIN/
  39. # Windows Installer files
  40. *.cab
  41. *.msi
  42. *.msm
  43. *.msp
  44. # Windows shortcuts
  45. *.lnk
  46. # ---> Eclipse
  47. *.pydevproject
  48. .metadata
  49. .gradle
  50. bin/
  51. tmp/
  52. *.tmp
  53. *.bak
  54. *.swp
  55. *~.nib
  56. local.properties
  57. .settings/
  58. .loadpath
  59. # Eclipse Core
  60. .project
  61. # External tool builders
  62. .externalToolBuilders/
  63. # Locally stored "Eclipse launch configurations"
  64. *.launch
  65. # CDT-specific
  66. .cproject
  67. # JDT-specific (Eclipse Java Development Tools)
  68. .classpath
  69. # Java annotation processor (APT)
  70. .factorypath
  71. # PDT-specific
  72. .buildpath
  73. # sbteclipse plugin
  74. .target
  75. # TeXlipse plugin
  76. .texlipse
  77. # ---> VisualStudioCode
  78. .settings
  79. # ---> MicrosoftOffice
  80. *.tmp
  81. # Word temporary
  82. ~$*.doc*
  83. # Excel temporary
  84. ~$*.xls*
  85. # Excel Backup File
  86. *.xlk
  87. # ---> Python
  88. # Byte-compiled / optimized / DLL files
  89. __pycache__/
  90. *.py[cod]
  91. *$py.class
  92. # C extensions
  93. *.so
  94. # Distribution / packaging
  95. .Python
  96. env/
  97. build/
  98. develop-eggs/
  99. dist/
  100. downloads/
  101. eggs/
  102. .eggs/
  103. lib/
  104. lib64/
  105. parts/
  106. sdist/
  107. var/
  108. *.egg-info/
  109. .installed.cfg
  110. *.egg
  111. # PyInstaller
  112. # Usually these files are written by a python script from a template
  113. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  114. *.manifest
  115. *.spec
  116. # Installer logs
  117. pip-log.txt
  118. pip-delete-this-directory.txt
  119. # Unit test / coverage reports
  120. htmlcov/
  121. .tox/
  122. .coverage
  123. .coverage.*
  124. .cache
  125. nosetests.xml
  126. coverage.xml
  127. *,cover
  128. # Translations
  129. *.mo
  130. *.pot
  131. # Django stuff:
  132. *.log
  133. # Sphinx documentation
  134. docs/_build/
  135. # PyBuilder
  136. target/
  137. # ---> Java
  138. *.class
  139. # Mobile Tools for Java (J2ME)
  140. .mtj.tmp/
  141. # Package Files #
  142. *.jar
  143. *.war
  144. *.ear
  145. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  146. hs_err_pid*
  147. /bot