.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # ---> Windows
  2. # Windows image file caches
  3. Thumbs.db
  4. ehthumbs.db
  5. # Folder config file
  6. Desktop.ini
  7. # Recycle Bin used on file shares
  8. $RECYCLE.BIN/
  9. # Windows Installer files
  10. *.cab
  11. *.msi
  12. *.msm
  13. *.msp
  14. # Windows shortcuts
  15. *.lnk
  16. # ---> Linux
  17. *~
  18. # KDE directory preferences
  19. .directory
  20. # Linux trash folder which might appear on any partition or disk
  21. .Trash-*
  22. # ---> Python
  23. # Byte-compiled / optimized / DLL files
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. # C extensions
  28. *.so
  29. # Distribution / packaging
  30. .Python
  31. env/
  32. build/
  33. develop-eggs/
  34. dist/
  35. downloads/
  36. eggs/
  37. .eggs/
  38. lib/
  39. lib64/
  40. parts/
  41. sdist/
  42. var/
  43. *.egg-info/
  44. .installed.cfg
  45. *.egg
  46. # PyInstaller
  47. # Usually these files are written by a python script from a template
  48. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  49. *.manifest
  50. *.spec
  51. # Installer logs
  52. pip-log.txt
  53. pip-delete-this-directory.txt
  54. # Unit test / coverage reports
  55. htmlcov/
  56. .tox/
  57. .coverage
  58. .coverage.*
  59. .cache
  60. nosetests.xml
  61. coverage.xml
  62. *,cover
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. # Sphinx documentation
  69. docs/_build/
  70. # PyBuilder
  71. target/
  72. # eclipse project files
  73. .project
  74. .pydevproject
  75. # chromedriver
  76. chromedriver
  77. chromedriver.exe
  78. # py cache
  79. __pycache__
  80. # ---> Eclipse
  81. *.pydevproject
  82. .metadata
  83. .gradle
  84. bin/
  85. tmp/
  86. *.tmp
  87. *.bak
  88. *.swp
  89. *~.nib
  90. local.properties
  91. .settings/
  92. .loadpath
  93. # Eclipse Core
  94. .project
  95. # External tool builders
  96. .externalToolBuilders/
  97. # Locally stored "Eclipse launch configurations"
  98. *.launch
  99. # CDT-specific
  100. .cproject
  101. # JDT-specific (Eclipse Java Development Tools)
  102. .classpath
  103. # Java annotation processor (APT)
  104. .factorypath
  105. # PDT-specific
  106. .buildpath
  107. # sbteclipse plugin
  108. .target
  109. # TeXlipse plugin
  110. .texlipse