.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. /coverage
  46. # Common utility alias
  47. /d
  48. # Intellij project files
  49. .idea/
  50. *.iml
  51. # Database of running server
  52. desktop/desktop.db
  53. app.reg
  54. # logs
  55. /logs
  56. desktop/logs
  57. # Maven's target directory
  58. target
  59. # Maven's dependency reduced pom
  60. desktop/libs/hadoop/java/dependency-reduced-pom.xml
  61. apps/spark/java/livy-core/dependency-reduced-pom.xml
  62. # Reviewboard config file
  63. .reviewboardrc
  64. # Make files
  65. JAVASCRIPTLINT.txt
  66. PYLINT.txt
  67. desktop/desktop-test.db
  68. ext/hadoop/
  69. ext/hive/
  70. ext/oozie/
  71. nosetests.xml
  72. oozie.sql
  73. tools/jenkins/ext/
  74. tools/jenkins/oozie.sql
  75. apps/logs
  76. java-lib/
  77. dependency-reduced-pom.xml
  78. # Sublime Text temp files
  79. *.subl*
  80. # Static files
  81. /static
  82. # Node Modules
  83. node_modules/
  84. webpack-stats*.json
  85. junitresults*
  86. # Generated js bundles
  87. desktop/core/src/desktop/static/desktop/js/bundles/
  88. # Hugo generated files
  89. docs/docs-site/public/
  90. # VSCode settings
  91. .vscode