.gitignore 1.5 KB

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