.gitignore 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. # emacs temp files
  32. *~
  33. # vim temp files
  34. .*.swp
  35. # Makefile's cache
  36. cache.mk
  37. # Ruby's local gem information
  38. Gemfile.lock
  39. # Temporary test reports
  40. report.xml
  41. latency_trace.txt
  42. latency_trace.*.txt
  43. # port server log
  44. portlog.txt
  45. # gyp generated make files
  46. *-gyp.mk
  47. out
  48. # YCM config files
  49. .ycm_extra_conf.py
  50. # XCode
  51. ^build/
  52. *.pbxuser
  53. !default.pbxuser
  54. *.mode1v3
  55. !default.mode1v3
  56. *.mode2v3
  57. !default.mode2v3
  58. *.perspectivev3
  59. !default.perspectivev3
  60. xcuserdata
  61. *.xccheckout
  62. *.moved-aside
  63. DerivedData
  64. *.hmap
  65. *.ipa
  66. *.xcuserstate
  67. *.DS_Store
  68. # Objective-C generated files
  69. *.pbobjc.*
  70. *.pbrpc.*
  71. # Cocoapods artifacts
  72. # Podfile.lock and the workspace file are tracked, to ease deleting them. That's
  73. # needed to trigger "pod install" to rerun the preinstall commands.
  74. Pods/
  75. # Artifacts directory
  76. artifacts/