.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. # ---> C++
  2. # Compiled Object files
  3. *.slo
  4. *.lo
  5. *.o
  6. *.obj
  7. # Precompiled Headers
  8. *.gch
  9. *.pch
  10. # Compiled Dynamic libraries
  11. *.so
  12. *.dylib
  13. *.dll
  14. # Fortran module files
  15. *.mod
  16. # Compiled Static libraries
  17. *.lai
  18. *.la
  19. *.a
  20. *.lib
  21. # Executables
  22. *.exe
  23. *.out
  24. *.app
  25. # ---> C
  26. # Object files
  27. *.o
  28. *.ko
  29. *.obj
  30. *.elf
  31. # Precompiled Headers
  32. *.gch
  33. *.pch
  34. # Libraries
  35. *.lib
  36. *.a
  37. *.la
  38. *.lo
  39. # Shared objects (inc. Windows DLLs)
  40. *.dll
  41. *.so
  42. *.so.*
  43. *.dylib
  44. # Executables
  45. *.exe
  46. *.out
  47. *.app
  48. *.i*86
  49. *.x86_64
  50. *.hex
  51. # Debug files
  52. *.dSYM/
  53. # ---> Java
  54. *.class
  55. # Mobile Tools for Java (J2ME)
  56. .mtj.tmp/
  57. # Package Files #
  58. *.jar
  59. *.war
  60. *.ear
  61. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  62. hs_err_pid*
  63. # ---> Python
  64. # Byte-compiled / optimized / DLL files
  65. __pycache__/
  66. *.py[cod]
  67. *$py.class
  68. # C extensions
  69. *.so
  70. # Distribution / packaging
  71. .Python
  72. env/
  73. build/
  74. develop-eggs/
  75. dist/
  76. downloads/
  77. eggs/
  78. .eggs/
  79. lib/
  80. lib64/
  81. parts/
  82. sdist/
  83. var/
  84. *.egg-info/
  85. .installed.cfg
  86. *.egg
  87. # PyInstaller
  88. # Usually these files are written by a python script from a template
  89. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  90. *.manifest
  91. *.spec
  92. # Installer logs
  93. pip-log.txt
  94. pip-delete-this-directory.txt
  95. # Unit test / coverage reports
  96. htmlcov/
  97. .tox/
  98. .coverage
  99. .coverage.*
  100. .cache
  101. nosetests.xml
  102. coverage.xml
  103. *,cover
  104. # Translations
  105. *.mo
  106. *.pot
  107. # Django stuff:
  108. *.log
  109. # Sphinx documentation
  110. docs/_build/
  111. # PyBuilder
  112. target/