.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. # C/C++ build outputs
  2. bins
  3. gens
  4. libs
  5. objs
  6. # Python items
  7. python_build/
  8. .coverage*
  9. .eggs
  10. .tox
  11. htmlcov/
  12. dist/
  13. *.egg
  14. # Node installation output
  15. node_modules/
  16. src/node/extension_binary/
  17. # gcov coverage data
  18. reports
  19. coverage
  20. *.gcno
  21. # profiler output
  22. *.prof
  23. # python compiled objects
  24. *.pyc
  25. #eclipse project files
  26. .cproject
  27. .project
  28. .settings
  29. # cache for run_tests.py
  30. .run_tests_cache
  31. .preprocessed_build
  32. # emacs temp files
  33. *~
  34. # vim temp files
  35. .*.swp
  36. # Makefile's cache
  37. cache.mk
  38. # Ruby's local gem information
  39. Gemfile.lock
  40. # Temporary test reports
  41. report.xml
  42. latency_trace.txt
  43. latency_trace.*.txt
  44. # port server log
  45. portlog.txt
  46. # gyp generated make files
  47. *-gyp.mk
  48. out
  49. # YCM config files
  50. .ycm_extra_conf.py
  51. # XCode
  52. ^build/
  53. *.pbxuser
  54. !default.pbxuser
  55. *.mode1v3
  56. !default.mode1v3
  57. *.mode2v3
  58. !default.mode2v3
  59. *.perspectivev3
  60. !default.perspectivev3
  61. xcuserdata
  62. *.xccheckout
  63. *.moved-aside
  64. DerivedData
  65. *.hmap
  66. *.ipa
  67. *.xcuserstate
  68. *.DS_Store
  69. # Objective-C generated files
  70. *.pbobjc.*
  71. *.pbrpc.*
  72. # Cocoapods artifacts
  73. # Podfile.lock and the workspace file are tracked, to ease deleting them. That's
  74. # needed to trigger "pod install" to rerun the preinstall commands.
  75. Pods/
  76. # Artifacts directory
  77. artifacts/