.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. # ---> C
  26. # Object files
  27. *.o
  28. *.ko
  29. *.obj
  30. *.elf
  31. # Precompiled Headers
  32. *.gch
  33. *.pch
  34. # Libraries
  35. *.lib
  36. *.a
  37. *.la
  38. *.lo
  39. # Shared objects (inc. Windows DLLs)
  40. *.dll
  41. *.so
  42. *.so.*
  43. *.dylib
  44. # Executables
  45. *.exe
  46. *.out
  47. *.app
  48. *.i*86
  49. *.x86_64
  50. *.hex
  51. # Debug files
  52. *.dSYM/
  53. # ---> C++
  54. # Compiled Object files
  55. *.slo
  56. *.lo
  57. *.o
  58. *.obj
  59. # Precompiled Headers
  60. *.gch
  61. *.pch
  62. # Compiled Dynamic libraries
  63. *.so
  64. *.dylib
  65. *.dll
  66. # Fortran module files
  67. *.mod
  68. # Compiled Static libraries
  69. *.lai
  70. *.la
  71. *.a
  72. *.lib
  73. # Executables
  74. *.exe
  75. *.out
  76. *.app
  77. # ---> CMake
  78. CMakeCache.txt
  79. CMakeFiles
  80. CMakeScripts
  81. Makefile
  82. cmake_install.cmake
  83. install_manifest.txt
  84. # ---> Python
  85. # Byte-compiled / optimized / DLL files
  86. __pycache__/
  87. *.py[cod]
  88. *$py.class
  89. # C extensions
  90. *.so
  91. # Distribution / packaging
  92. .Python
  93. env/
  94. build/
  95. develop-eggs/
  96. dist/
  97. downloads/
  98. eggs/
  99. .eggs/
  100. lib/
  101. lib64/
  102. parts/
  103. sdist/
  104. var/
  105. *.egg-info/
  106. .installed.cfg
  107. *.egg
  108. # PyInstaller
  109. # Usually these files are written by a python script from a template
  110. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  111. *.manifest
  112. *.spec
  113. # Installer logs
  114. pip-log.txt
  115. pip-delete-this-directory.txt
  116. # Unit test / coverage reports
  117. htmlcov/
  118. .tox/
  119. .coverage
  120. .coverage.*
  121. .cache
  122. nosetests.xml
  123. coverage.xml
  124. *,cover
  125. # Translations
  126. *.mo
  127. *.pot
  128. # Django stuff:
  129. *.log
  130. # Sphinx documentation
  131. docs/_build/
  132. # PyBuilder
  133. target/
  134. # ---> Java
  135. *.class
  136. # Mobile Tools for Java (J2ME)
  137. .mtj.tmp/
  138. # Package Files #
  139. *.jar
  140. *.war
  141. *.ear
  142. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  143. hs_err_pid*