.gitignore 1.3 KB

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