.gitignore 2.0 KB

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