.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. # C/C++ build outputs
  2. .build/
  3. bins
  4. gens
  5. libs
  6. objs
  7. # Python items
  8. cython_debug/
  9. python_build/
  10. yapf_virtual_environment/
  11. python_pylint_venv/
  12. .coverage*
  13. .eggs
  14. htmlcov/
  15. dist/
  16. *.egg
  17. py27/
  18. py3[0-9]*/
  19. # Node installation output
  20. node_modules
  21. src/node/extension_binary/
  22. # gcov coverage data
  23. reports
  24. coverage
  25. *.gcno
  26. # profiler output
  27. *.prof
  28. # python compiled objects
  29. *.pyc
  30. # eclipse project files
  31. .cproject
  32. .project
  33. .settings
  34. # cache for run_tests.py
  35. .run_tests_cache
  36. .preprocessed_build
  37. # emacs temp files
  38. *~
  39. # vim temp files
  40. .*.swp
  41. # Makefile's cache
  42. cache.mk
  43. # Ruby's local gem information
  44. Gemfile.lock
  45. # Temporary test reports
  46. report.xml
  47. */sponge_log.xml
  48. latency_trace.txt
  49. latency_trace.*.txt
  50. # port server log
  51. portlog.txt
  52. # gyp generated make files
  53. *-gyp.mk
  54. out
  55. # YCM config files
  56. .ycm_extra_conf.py
  57. # XCode
  58. ^build/
  59. *.pbxuser
  60. !default.pbxuser
  61. *.mode1v3
  62. !default.mode1v3
  63. *.mode2v3
  64. !default.mode2v3
  65. *.perspectivev3
  66. !default.perspectivev3
  67. xcuserdata
  68. *.xccheckout
  69. *.moved-aside
  70. DerivedData
  71. *.hmap
  72. *.ipa
  73. *.xcuserstate
  74. *.DS_Store
  75. # Objective-C generated files
  76. *.pbobjc.*
  77. *.pbrpc.*
  78. # Cocoapods artifacts
  79. Pods/
  80. Podfile.lock
  81. *.xcworkspace
  82. # Artifacts directory
  83. /artifacts/
  84. # Git generated files for conflicting
  85. *.orig
  86. # IDE specific folder for JetBrains IDEs
  87. .idea/
  88. # Blaze files
  89. bazel-bin
  90. bazel-genfiles
  91. bazel-grpc
  92. bazel-out
  93. bazel-testlogs
  94. # Debug output
  95. gdb.txt
  96. # ctags file
  97. tags
  98. # perf data
  99. memory_usage.csv
  100. perf.data
  101. perf.data.old
  102. # bm_diff
  103. bm_diff_new/
  104. bm_diff_old/
  105. bm_*.json
  106. # cmake build files
  107. /cmake/build