.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. # ---> C++
  30. # Compiled Object files
  31. *.slo
  32. *.lo
  33. *.o
  34. *.obj
  35. # Precompiled Headers
  36. *.gch
  37. *.pch
  38. # Compiled Dynamic libraries
  39. *.so
  40. *.dylib
  41. *.dll
  42. # Fortran module files
  43. *.mod
  44. # Compiled Static libraries
  45. *.lai
  46. *.la
  47. *.a
  48. *.lib
  49. # Executables
  50. *.exe
  51. *.out
  52. *.app
  53. # ---> Python
  54. # Byte-compiled / optimized / DLL files
  55. __pycache__/
  56. *.py[cod]
  57. *$py.class
  58. # C extensions
  59. *.so
  60. # Distribution / packaging
  61. .Python
  62. env/
  63. build/
  64. develop-eggs/
  65. dist/
  66. downloads/
  67. eggs/
  68. .eggs/
  69. lib/
  70. lib64/
  71. parts/
  72. sdist/
  73. var/
  74. *.egg-info/
  75. .installed.cfg
  76. *.egg
  77. # PyInstaller
  78. # Usually these files are written by a python script from a template
  79. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  80. *.manifest
  81. *.spec
  82. # Installer logs
  83. pip-log.txt
  84. pip-delete-this-directory.txt
  85. # Unit test / coverage reports
  86. htmlcov/
  87. .tox/
  88. .coverage
  89. .coverage.*
  90. .cache
  91. nosetests.xml
  92. coverage.xml
  93. *,cover
  94. # Translations
  95. *.mo
  96. *.pot
  97. # Django stuff:
  98. *.log
  99. # Sphinx documentation
  100. docs/_build/
  101. # PyBuilder
  102. target/