.gitignore 1.2 KB

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