.gitignore 1.7 KB

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