.gitignore 2.1 KB

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