.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. # ---> Perl
  54. /blib/
  55. /.build/
  56. _build/
  57. cover_db/
  58. inc/
  59. Build
  60. !Build/
  61. Build.bat
  62. .last_cover_stats
  63. /Makefile
  64. /Makefile.old
  65. /MANIFEST.bak
  66. /META.yml
  67. /META.json
  68. /MYMETA.*
  69. nytprof.out
  70. /pm_to_blib
  71. *.o
  72. *.bs
  73. /_eumm/
  74. # ---> Python
  75. # Byte-compiled / optimized / DLL files
  76. __pycache__/
  77. *.py[cod]
  78. *$py.class
  79. # C extensions
  80. *.so
  81. # Distribution / packaging
  82. .Python
  83. env/
  84. build/
  85. develop-eggs/
  86. dist/
  87. downloads/
  88. eggs/
  89. .eggs/
  90. lib/
  91. lib64/
  92. parts/
  93. sdist/
  94. var/
  95. *.egg-info/
  96. .installed.cfg
  97. *.egg
  98. # PyInstaller
  99. # Usually these files are written by a python script from a template
  100. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  101. *.manifest
  102. *.spec
  103. # Installer logs
  104. pip-log.txt
  105. pip-delete-this-directory.txt
  106. # Unit test / coverage reports
  107. htmlcov/
  108. .tox/
  109. .coverage
  110. .coverage.*
  111. .cache
  112. nosetests.xml
  113. coverage.xml
  114. *,cover
  115. # Translations
  116. *.mo
  117. *.pot
  118. # Django stuff:
  119. *.log
  120. # Sphinx documentation
  121. docs/_build/
  122. # PyBuilder
  123. target/