.gitignore 1019 B

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