.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. *.egg-info
  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. # Swift Package Manager files
  83. Package.resolved
  84. # Objective-C generated files
  85. *.pbobjc.*
  86. *.pbrpc.*
  87. src/objective-c/**/Build
  88. # Cocoapods artifacts
  89. Pods/
  90. Podfile.lock
  91. *.xcworkspace
  92. # Artifacts directory
  93. /artifacts/
  94. # Git generated files for conflicting
  95. *.orig
  96. # IDE specific folder for JetBrains IDEs
  97. .idea/
  98. # Bazel files
  99. bazel-*
  100. bazel_format_virtual_environment/
  101. tools/bazel-*
  102. # Debug output
  103. gdb.txt
  104. # ctags file
  105. tags
  106. # perf data
  107. memory_usage.csv
  108. perf.data
  109. perf.data.old
  110. # bm_diff
  111. bm_diff_new/
  112. bm_diff_old/
  113. bm_*.json
  114. # cmake build files
  115. **/cmake/build/
  116. # Visual Studio Code artifacts
  117. .vscode/*
  118. .history/
  119. # Clion artifacts
  120. cmake-build-debug/
  121. # Benchmark outputs
  122. BenchmarkDotNet.Artifacts/
  123. # pyenv config
  124. .python-version
  125. # clang JSON compilation database file
  126. compile_commands.json