.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # ---> C
  2. # Object files
  3. *.o
  4. *.ko
  5. *.obj
  6. *.elf
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Libraries
  11. *.lib
  12. *.a
  13. *.la
  14. *.lo
  15. # Shared objects (inc. Windows DLLs)
  16. *.dll
  17. *.so
  18. *.so.*
  19. *.dylib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. *.i*86
  25. *.x86_64
  26. *.hex
  27. # Debug files
  28. *.dSYM/
  29. # ---> Python
  30. # Byte-compiled / optimized / DLL files
  31. __pycache__/
  32. *.py[cod]
  33. *$py.class
  34. # C extensions
  35. *.so
  36. # Distribution / packaging
  37. .Python
  38. env/
  39. build/
  40. develop-eggs/
  41. dist/
  42. downloads/
  43. eggs/
  44. .eggs/
  45. lib/
  46. lib64/
  47. parts/
  48. sdist/
  49. var/
  50. *.egg-info/
  51. .installed.cfg
  52. *.egg
  53. # PyInstaller
  54. # Usually these files are written by a python script from a template
  55. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  56. *.manifest
  57. *.spec
  58. # Installer logs
  59. pip-log.txt
  60. pip-delete-this-directory.txt
  61. # Unit test / coverage reports
  62. htmlcov/
  63. .tox/
  64. .coverage
  65. .coverage.*
  66. .cache
  67. nosetests.xml
  68. coverage.xml
  69. *,cover
  70. # Translations
  71. *.mo
  72. *.pot
  73. # Django stuff:
  74. *.log
  75. # Sphinx documentation
  76. docs/_build/
  77. # PyBuilder
  78. target/
  79. # ---> Emacs
  80. # -*- mode: gitignore; -*-
  81. *~
  82. \#*\#
  83. /.emacs.desktop
  84. /.emacs.desktop.lock
  85. *.elc
  86. auto-save-list
  87. tramp
  88. .\#*
  89. # Org-mode
  90. .org-id-locations
  91. *_archive
  92. # flymake-mode
  93. *_flymake.*
  94. # eshell files
  95. /eshell/history
  96. /eshell/lastdir
  97. # elpa packages
  98. /elpa/
  99. # reftex files
  100. *.rel
  101. # AUCTeX auto folder
  102. /auto/
  103. # cask packages
  104. .cask/