.gitignore 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # ---> Emacs
  2. # -*- mode: gitignore; -*-
  3. *~
  4. \#*\#
  5. /.emacs.desktop
  6. /.emacs.desktop.lock
  7. *.elc
  8. auto-save-list
  9. tramp
  10. .\#*
  11. # Org-mode
  12. .org-id-locations
  13. *_archive
  14. # flymake-mode
  15. *_flymake.*
  16. # eshell files
  17. /eshell/history
  18. /eshell/lastdir
  19. # elpa packages
  20. /elpa/
  21. # reftex files
  22. *.rel
  23. # AUCTeX auto folder
  24. /auto/
  25. # cask packages
  26. .cask/
  27. # ---> Python
  28. # Byte-compiled / optimized / DLL files
  29. __pycache__/
  30. *.py[cod]
  31. *$py.class
  32. # C extensions
  33. *.so
  34. # Distribution / packaging
  35. .Python
  36. env/
  37. build/
  38. develop-eggs/
  39. dist/
  40. downloads/
  41. eggs/
  42. .eggs/
  43. lib/
  44. lib64/
  45. parts/
  46. sdist/
  47. var/
  48. *.egg-info/
  49. .installed.cfg
  50. *.egg
  51. # PyInstaller
  52. # Usually these files are written by a python script from a template
  53. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  54. *.manifest
  55. *.spec
  56. # Installer logs
  57. pip-log.txt
  58. pip-delete-this-directory.txt
  59. # Unit test / coverage reports
  60. htmlcov/
  61. .tox/
  62. .coverage
  63. .coverage.*
  64. .cache
  65. nosetests.xml
  66. coverage.xml
  67. *,cover
  68. # Translations
  69. *.mo
  70. *.pot
  71. # Django stuff:
  72. *.log
  73. # Sphinx documentation
  74. docs/_build/
  75. # PyBuilder
  76. target/