.gitignore 1.7 KB

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