.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. # ---> 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. # ---> MicrosoftOffice
  78. *.tmp
  79. # Word temporary
  80. ~$*.doc*
  81. # Excel temporary
  82. ~$*.xls*
  83. # Excel Backup File
  84. *.xlk
  85. # ---> Python
  86. # Byte-compiled / optimized / DLL files
  87. __pycache__/
  88. *.py[cod]
  89. *$py.class
  90. # C extensions
  91. *.so
  92. # Distribution / packaging
  93. .Python
  94. env/
  95. build/
  96. develop-eggs/
  97. dist/
  98. downloads/
  99. eggs/
  100. .eggs/
  101. lib/
  102. lib64/
  103. parts/
  104. sdist/
  105. var/
  106. *.egg-info/
  107. .installed.cfg
  108. *.egg
  109. # PyInstaller
  110. # Usually these files are written by a python script from a template
  111. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  112. *.manifest
  113. *.spec
  114. # Installer logs
  115. pip-log.txt
  116. pip-delete-this-directory.txt
  117. # Unit test / coverage reports
  118. htmlcov/
  119. .tox/
  120. .coverage
  121. .coverage.*
  122. .cache
  123. nosetests.xml
  124. coverage.xml
  125. *,cover
  126. # Translations
  127. *.mo
  128. *.pot
  129. # Django stuff:
  130. *.log
  131. # Sphinx documentation
  132. docs/_build/
  133. # PyBuilder
  134. target/