.gitignore 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. # C/C++ build outputs
  2. .build/
  3. bins
  4. gens
  5. libs
  6. objs
  7. # Python items
  8. .coverage*
  9. .eggs
  10. .pytype
  11. *.egg
  12. *.egg-info
  13. a.out
  14. cython_debug/
  15. dist/
  16. htmlcov/
  17. py3*/
  18. python_build/
  19. python_pylint_venv/
  20. src/python/grpcio_*/=*
  21. src/python/grpcio_*/build/
  22. src/python/grpcio_*/LICENSE
  23. src/python/grpcio_status/grpc_status/google/rpc/status.proto
  24. yapf_virtual_environment/
  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. # Swift Package Manager files
  82. Package.resolved
  83. # Objective-C generated files
  84. *.pbobjc.*
  85. *.pbrpc.*
  86. src/objective-c/**/Build
  87. # Cocoapods artifacts
  88. Pods/
  89. Podfile.lock
  90. *.xcworkspace
  91. # Artifacts directory
  92. /artifacts/
  93. # Git generated files for conflicting
  94. *.orig
  95. # IDE specific folder for JetBrains IDEs
  96. .idea/
  97. # Bazel files
  98. bazel-*
  99. bazel_format_virtual_environment/
  100. tools/bazel-*
  101. # Debug output
  102. gdb.txt
  103. # ctags file
  104. tags
  105. # perf data
  106. memory_usage.csv
  107. perf.data
  108. perf.data.old
  109. # bm_diff
  110. bm_diff_new/
  111. bm_diff_old/
  112. bm_*.json
  113. # cmake build files
  114. **/cmake/build/
  115. # Visual Studio Code artifacts
  116. .vscode/*
  117. .history/
  118. # Clion artifacts
  119. cmake-build-debug/
  120. # Benchmark outputs
  121. BenchmarkDotNet.Artifacts/
  122. # pyenv config
  123. .python-version
  124. # clang JSON compilation database file
  125. compile_commands.json
  126. # IWYU byproducts
  127. compile_commands_for_iwyu.json
  128. iwyu.out
  129. iwyu_files.txt