.gitignore 999 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # C/C++ build outputs
  2. bins
  3. gens
  4. libs
  5. objs
  6. # Python virtual environments
  7. python*_virtual_environment
  8. # gcov coverage data
  9. reports
  10. coverage
  11. *.gcno
  12. # profiler output
  13. *.prof
  14. # python compiled objects
  15. *.pyc
  16. #eclipse project files
  17. .cproject
  18. .project
  19. .settings
  20. # cache for run_tests.py
  21. .run_tests_cache
  22. # emacs temp files
  23. *~
  24. # vim temp files
  25. .*.swp
  26. # Makefile's cache
  27. cache.mk
  28. # Temporary test reports
  29. report.xml
  30. latency_trace.txt
  31. # port server log
  32. portlog.txt
  33. # gyp generated make files
  34. *-gyp.mk
  35. out
  36. # YCM config files
  37. .ycm_extra_conf.py
  38. # XCode
  39. build/
  40. *.pbxuser
  41. !default.pbxuser
  42. *.mode1v3
  43. !default.mode1v3
  44. *.mode2v3
  45. !default.mode2v3
  46. *.perspectivev3
  47. !default.perspectivev3
  48. xcuserdata
  49. *.xccheckout
  50. *.moved-aside
  51. DerivedData
  52. *.hmap
  53. *.ipa
  54. *.xcuserstate
  55. *.DS_Store
  56. # Objective-C generated files
  57. *.pbobjc.*
  58. *.pbrpc.*
  59. # Cocoapods artifacts
  60. # Podfile.lock and the workspace file are tracked, to ease deleting them. That's
  61. # needed to trigger "pod install" to rerun the preinstall commands.
  62. Pods/