.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. # ---> macOS
  2. .DS_Store
  3. .AppleDouble
  4. .LSOverride
  5. # Icon must end with two \r
  6. Icon
  7. # Thumbnails
  8. ._*
  9. # Files that might appear in the root of a volume
  10. .DocumentRevisions-V100
  11. .fseventsd
  12. .Spotlight-V100
  13. .TemporaryItems
  14. .Trashes
  15. .VolumeIcon.icns
  16. # Directories potentially created on remote AFP share
  17. .AppleDB
  18. .AppleDesktop
  19. Network Trash Folder
  20. Temporary Items
  21. .apdisk
  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. # ---> Windows
  73. # Windows image file caches
  74. Thumbs.db
  75. ehthumbs.db
  76. # Folder config file
  77. Desktop.ini
  78. # Recycle Bin used on file shares
  79. $RECYCLE.BIN/
  80. # Windows Installer files
  81. *.cab
  82. *.msi
  83. *.msm
  84. *.msp
  85. # Windows shortcuts
  86. *.lnk