.gitignore 1.9 KB

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