.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. python_format_venv/
  11. .coverage*
  12. .eggs
  13. htmlcov/
  14. dist/
  15. *.egg
  16. py27/
  17. py34/
  18. # Node installation output
  19. node_modules
  20. src/node/extension_binary/
  21. # gcov coverage data
  22. reports
  23. coverage
  24. *.gcno
  25. # profiler output
  26. *.prof
  27. # python compiled objects
  28. *.pyc
  29. #eclipse project files
  30. .cproject
  31. .project
  32. .settings
  33. # cache for run_tests.py
  34. .run_tests_cache
  35. .preprocessed_build
  36. # emacs temp files
  37. *~
  38. # vim temp files
  39. .*.swp
  40. # Makefile's cache
  41. cache.mk
  42. # Ruby's local gem information
  43. Gemfile.lock
  44. # Temporary test reports
  45. report.xml
  46. latency_trace.txt
  47. latency_trace.*.txt
  48. # port server log
  49. portlog.txt
  50. # gyp generated make files
  51. *-gyp.mk
  52. out
  53. # YCM config files
  54. .ycm_extra_conf.py
  55. # XCode
  56. ^build/
  57. *.pbxuser
  58. !default.pbxuser
  59. *.mode1v3
  60. !default.mode1v3
  61. *.mode2v3
  62. !default.mode2v3
  63. *.perspectivev3
  64. !default.perspectivev3
  65. xcuserdata
  66. *.xccheckout
  67. *.moved-aside
  68. DerivedData
  69. *.hmap
  70. *.ipa
  71. *.xcuserstate
  72. *.DS_Store
  73. # Objective-C generated files
  74. *.pbobjc.*
  75. *.pbrpc.*
  76. # Cocoapods artifacts
  77. # Podfile.lock and the workspace file are tracked, to ease deleting them. That's
  78. # needed to trigger "pod install" to rerun the preinstall commands.
  79. Pods/
  80. # Artifacts directory
  81. /artifacts/
  82. # Git generated files for conflicting
  83. *.orig
  84. # IDE specific folder for JetBrains IDEs
  85. .idea/
  86. # Blaze files
  87. bazel-bin
  88. bazel-genfiles
  89. bazel-grpc
  90. bazel-out
  91. bazel-testlogs