.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # OS X nonsense
  2. .DS_Store
  3. ._*
  4. # Python compiled files
  5. *.pyc
  6. *.pyo
  7. # Language compiled files
  8. apps/*/src/*/locale/*/LC_MESSAGES/*.mo
  9. desktop/core/src/desktop/locale/*/LC_MESSAGES/*.mo
  10. desktop/libs/*/src/*/locale/*/LC_MESSAGES/*.mo
  11. # vim tmp files
  12. .*.swp
  13. .*.swo
  14. # emacs backup files
  15. .*~
  16. # Build directory and environment
  17. build
  18. env
  19. metastore_db
  20. VERSION_INFO
  21. # Generated configuration
  22. desktop/conf/*.ini
  23. # ctags file
  24. tags
  25. TAGS
  26. # Third party build files
  27. *.egg-info/
  28. dist/
  29. # Include top level distribution dir
  30. !/dist/
  31. # Crepo fetched them
  32. ext/thirdparty/js/art-widgets/
  33. ext/thirdparty/js/mootools-table/
  34. ext/thirdparty/js/jframe/
  35. # Make product
  36. desktop/core/ext-py/lxml/src/lxml/lxml-version.h
  37. # Common "beeswaxd" product
  38. /metastore_db
  39. /derby.log
  40. # Nose --with-id's file
  41. /.noseids
  42. # Coverage product
  43. /.coverage
  44. /coverage.xml
  45. # Common utility alias
  46. /d
  47. # Intellij project files
  48. .idea/
  49. *.iml
  50. # Database of running server
  51. desktop/desktop.db
  52. app.reg
  53. # logs
  54. /logs
  55. desktop/logs
  56. # Maven's target directory
  57. target
  58. # Maven's dependency reduced pom
  59. desktop/libs/hadoop/java/dependency-reduced-pom.xml
  60. apps/spark/java/livy-core/dependency-reduced-pom.xml
  61. # Reviewboard config file
  62. .reviewboardrc
  63. # Make files
  64. JAVASCRIPTLINT.txt
  65. PYLINT.txt
  66. desktop/desktop-test.db
  67. ext/hadoop/
  68. ext/hive/
  69. ext/oozie/
  70. nosetests.xml
  71. oozie.sql
  72. tools/jenkins/ext/
  73. tools/jenkins/oozie.sql
  74. apps/logs
  75. java-lib/
  76. dependency-reduced-pom.xml
  77. # Sublime Text temp files
  78. *.subl*
  79. # Static files
  80. /static
  81. # Node Modules
  82. node_modules/
  83. junitresults*