.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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_gevent/
  18. py27_native/
  19. py3[0-9]_gevent/
  20. py3[0-9]_native/
  21. a.out
  22. src/python/grpcio_*/LICENSE
  23. src/python/grpcio_status/grpc_status/google/rpc/status.proto
  24. .pytype
  25. # Node installation output
  26. node_modules
  27. src/node/extension_binary/
  28. # gcov coverage data
  29. reports
  30. coverage
  31. *.gcno
  32. # profiler output
  33. *.prof
  34. # python compiled objects
  35. *.pyc
  36. # eclipse project files
  37. .cproject
  38. .project
  39. .settings
  40. # cache for run_tests.py
  41. .run_tests_cache
  42. .preprocessed_build
  43. # emacs temp files
  44. *~
  45. # vim temp files
  46. .*.swp
  47. # Makefile's cache
  48. cache.mk
  49. # Ruby's local gem information
  50. Gemfile.lock
  51. # Temporary test reports
  52. report.xml
  53. */sponge_log.xml
  54. latency_trace.txt
  55. latency_trace.*.txt
  56. # port server log
  57. portlog.txt
  58. # gyp generated make files
  59. *-gyp.mk
  60. out
  61. # YCM config files
  62. .ycm_extra_conf.py
  63. # XCode
  64. ^build/
  65. *.pbxuser
  66. !default.pbxuser
  67. *.mode1v3
  68. !default.mode1v3
  69. *.mode2v3
  70. !default.mode2v3
  71. *.perspectivev3
  72. !default.perspectivev3
  73. xcuserdata
  74. *.xccheckout
  75. *.moved-aside
  76. DerivedData
  77. *.hmap
  78. *.ipa
  79. *.xcuserstate
  80. *.DS_Store
  81. # Objective-C generated files
  82. *.pbobjc.*
  83. *.pbrpc.*
  84. src/objective-c/**/Build
  85. # Cocoapods artifacts
  86. Pods/
  87. Podfile.lock
  88. *.xcworkspace
  89. # Artifacts directory
  90. /artifacts/
  91. # Git generated files for conflicting
  92. *.orig
  93. # IDE specific folder for JetBrains IDEs
  94. .idea/
  95. # Bazel files
  96. bazel-*
  97. bazel_format_virtual_environment/
  98. tools/bazel-*
  99. # Debug output
  100. gdb.txt
  101. # ctags file
  102. tags
  103. # perf data
  104. memory_usage.csv
  105. perf.data
  106. perf.data.old
  107. # bm_diff
  108. bm_diff_new/
  109. bm_diff_old/
  110. bm_*.json
  111. # cmake build files
  112. /cmake/build
  113. # Visual Studio Code artifacts
  114. .vscode/*
  115. .history/
  116. # Clion artifacts
  117. cmake-build-debug/
  118. # Benchmark outputs
  119. BenchmarkDotNet.Artifacts/
  120. # pyenv config
  121. .python-version