.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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. # ---> Python
  32. # Byte-compiled / optimized / DLL files
  33. __pycache__/
  34. *.py[cod]
  35. *$py.class
  36. # C extensions
  37. *.so
  38. # Distribution / packaging
  39. .Python
  40. env/
  41. build/
  42. develop-eggs/
  43. dist/
  44. downloads/
  45. eggs/
  46. .eggs/
  47. lib/
  48. lib64/
  49. parts/
  50. sdist/
  51. var/
  52. *.egg-info/
  53. .installed.cfg
  54. *.egg
  55. # PyInstaller
  56. # Usually these files are written by a python script from a template
  57. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  58. *.manifest
  59. *.spec
  60. # Installer logs
  61. pip-log.txt
  62. pip-delete-this-directory.txt
  63. # Unit test / coverage reports
  64. htmlcov/
  65. .tox/
  66. .coverage
  67. .coverage.*
  68. .cache
  69. nosetests.xml
  70. coverage.xml
  71. *,cover
  72. # Translations
  73. *.mo
  74. *.pot
  75. # Django stuff:
  76. *.log
  77. # Sphinx documentation
  78. docs/_build/
  79. # PyBuilder
  80. target/
  81. # ---> Eclipse
  82. *.pydevproject
  83. .metadata
  84. .gradle
  85. bin/
  86. tmp/
  87. *.tmp
  88. *.bak
  89. *.swp
  90. *~.nib
  91. local.properties
  92. .settings/
  93. .loadpath
  94. # Eclipse Core
  95. .project
  96. # External tool builders
  97. .externalToolBuilders/
  98. # Locally stored "Eclipse launch configurations"
  99. *.launch
  100. # CDT-specific
  101. .cproject
  102. # JDT-specific (Eclipse Java Development Tools)
  103. .classpath
  104. # Java annotation processor (APT)
  105. .factorypath
  106. # PDT-specific
  107. .buildpath
  108. # sbteclipse plugin
  109. .target
  110. # TeXlipse plugin
  111. .texlipse
  112. # ---> Windows
  113. # Windows image file caches
  114. Thumbs.db
  115. ehthumbs.db
  116. # Folder config file
  117. Desktop.ini
  118. # Recycle Bin used on file shares
  119. $RECYCLE.BIN/
  120. # Windows Installer files
  121. *.cab
  122. *.msi
  123. *.msm
  124. *.msp
  125. # Windows shortcuts
  126. *.lnk
  127. # ---> MicrosoftOffice
  128. *.tmp
  129. # Word temporary
  130. ~$*.doc*
  131. # Excel temporary
  132. ~$*.xls*
  133. # Excel Backup File
  134. *.xlk
  135. # ---> Java
  136. *.class
  137. # Mobile Tools for Java (J2ME)
  138. .mtj.tmp/
  139. # Package Files #
  140. *.jar
  141. *.war
  142. *.ear
  143. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  144. hs_err_pid*