.gitignore 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # Compiled Object files
  2. *.slo
  3. *.lo
  4. *.o
  5. # Compiled Dynamic libraries
  6. *.dll
  7. *.so
  8. *.dylib
  9. # Compiled Static libraries
  10. *.lai
  11. *.la
  12. *.a
  13. # Python
  14. *.py[cod]
  15. # Installer logs
  16. pip-log.txt
  17. # Unit test / coverage reports
  18. .coverage
  19. cover/
  20. .tox
  21. nosetests.xml
  22. .noseids
  23. #Translations
  24. *.mo
  25. #Mr Developer
  26. .mr.developer.cfg
  27. # custom
  28. ycm_core_tests
  29. # When we use the bcp tool to copy over the parts of boost we care about, it
  30. # also copies some cruft files we don't need; this ignores them
  31. cpp/BoostParts/libs/*/build
  32. cpp/BoostParts/libs/*/test
  33. # These folders in cpp/llvm contain lots of upstream cruft we don't care
  34. # about and would rather not have in our tree...
  35. cpp/llvm/docs/*
  36. cpp/llvm/tools/clang/www/*
  37. # ... but excluding these LLVMBuild.txt files breaks the build so we need to
  38. # explicitely include them
  39. !LLVMBuild.txt
  40. # Exclude auto generated vim doc tags.
  41. doc/tags
  42. # Coverage files
  43. .coverage
  44. .coverage.*
  45. coverage.xml