.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. npm_dist
  22. # Generated configuration
  23. desktop/conf/*.ini
  24. # ctags file
  25. tags
  26. TAGS
  27. # Third party build files
  28. *.egg-info/
  29. dist/
  30. # Include top level distribution dir
  31. !/dist/
  32. # Crepo fetched them
  33. ext/thirdparty/js/art-widgets/
  34. ext/thirdparty/js/mootools-table/
  35. ext/thirdparty/js/jframe/
  36. # Make product
  37. desktop/core/ext-py/lxml/src/lxml/lxml-version.h
  38. # Common "beeswaxd" product
  39. /metastore_db
  40. /derby.log
  41. # Nose --with-id's file
  42. /.noseids
  43. # Coverage product
  44. /.coverage
  45. /coverage.xml
  46. /coverage
  47. # Common utility alias
  48. /d
  49. # Intellij project files
  50. .idea/
  51. *.iml
  52. # Database of running server
  53. desktop/desktop.db
  54. app.reg
  55. # logs
  56. /logs
  57. desktop/logs
  58. # Maven's target directory
  59. target
  60. # Maven's dependency reduced pom
  61. desktop/libs/hadoop/java/dependency-reduced-pom.xml
  62. apps/spark/java/livy-core/dependency-reduced-pom.xml
  63. # Reviewboard config file
  64. .reviewboardrc
  65. # Make files
  66. JAVASCRIPTLINT.txt
  67. PYLINT.txt
  68. desktop/desktop-test.db
  69. ext/hadoop/
  70. ext/hive/
  71. ext/oozie/
  72. nosetests.xml
  73. oozie.sql
  74. tools/jenkins/ext/
  75. tools/jenkins/oozie.sql
  76. apps/logs
  77. java-lib/
  78. dependency-reduced-pom.xml
  79. # Sublime Text temp files
  80. *.subl*
  81. # Static files
  82. /static
  83. # Node Modules
  84. node_modules/
  85. webpack-stats*.json
  86. junitresults*
  87. # Generated js bundles
  88. desktop/core/src/desktop/static/desktop/js/bundles/
  89. # Hugo generated files
  90. docs/docs-site/public/
  91. # VSCode settings
  92. .vscode