.gitignore 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. ### Scala template
  2. *.class
  3. *.log
  4. ### Example user template template
  5. ### Example user template
  6. # IntelliJ project files
  7. .idea
  8. *.iml
  9. out
  10. gen
  11. ### Java template
  12. # Compiled class file
  13. *.class
  14. # Log file
  15. *.log
  16. # BlueJ files
  17. *.ctxt
  18. # Mobile Tools for Java (J2ME)
  19. .mtj.tmp/
  20. # Package Files #
  21. *.jar
  22. *.war
  23. *.nar
  24. *.ear
  25. *.zip
  26. *.tar.gz
  27. *.rar
  28. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  29. hs_err_pid*
  30. ### Python template
  31. # Byte-compiled / optimized / DLL files
  32. __pycache__/
  33. *.py[cod]
  34. *$py.class
  35. # C extensions
  36. *.so
  37. # Distribution / packaging
  38. .Python
  39. build/
  40. develop-eggs/
  41. dist/
  42. downloads/
  43. eggs/
  44. .eggs/
  45. lib/
  46. lib64/
  47. parts/
  48. sdist/
  49. var/
  50. wheels/
  51. share/python-wheels/
  52. *.egg-info/
  53. .installed.cfg
  54. *.egg
  55. MANIFEST
  56. # PyInstaller
  57. # Usually these files are written by a python script from a template
  58. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  59. *.manifest
  60. *.spec
  61. # Installer logs
  62. pip-log.txt
  63. pip-delete-this-directory.txt
  64. # Unit test / coverage reports
  65. htmlcov/
  66. .tox/
  67. .nox/
  68. .coverage
  69. .coverage.*
  70. .cache
  71. nosetests.xml
  72. coverage.xml
  73. *.cover
  74. *.py,cover
  75. .hypothesis/
  76. .pytest_cache/
  77. cover/
  78. # Translations
  79. *.mo
  80. *.pot
  81. # Django stuff:
  82. *.log
  83. local_settings.py
  84. db.sqlite3
  85. db.sqlite3-journal
  86. # Flask stuff:
  87. instance/
  88. .webassets-cache
  89. # Scrapy stuff:
  90. .scrapy
  91. # Sphinx documentation
  92. docs/_build/
  93. # PyBuilder
  94. .pybuilder/
  95. target/
  96. # Jupyter Notebook
  97. .ipynb_checkpoints
  98. # IPython
  99. profile_default/
  100. ipython_config.py
  101. # pyenv
  102. # For a library or package, you might want to ignore these files since the code is
  103. # intended to run in multiple environments; otherwise, check them in:
  104. # .python-version
  105. # pipenv
  106. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  107. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  108. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  109. # install all needed dependencies.
  110. #Pipfile.lock
  111. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  112. __pypackages__/
  113. # Celery stuff
  114. celerybeat-schedule
  115. celerybeat.pid
  116. # SageMath parsed files
  117. *.sage.py
  118. # Environments
  119. .env
  120. .venv
  121. env/
  122. venv/
  123. ENV/
  124. env.bak/
  125. venv.bak/
  126. # Spyder project settings
  127. .spyderproject
  128. .spyproject
  129. # Rope project settings
  130. .ropeproject
  131. # mkdocs documentation
  132. /site
  133. # mypy
  134. .mypy_cache/
  135. .dmypy.json
  136. dmypy.json
  137. # Pyre type checker
  138. .pyre/
  139. # pytype static type analyzer
  140. .pytype/
  141. # Cython debug symbols
  142. cython_debug/
  143. ### JetBrains template
  144. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  145. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  146. # User-specific stuff
  147. .idea/**/workspace.xml
  148. .idea/**/tasks.xml
  149. .idea/**/usage.statistics.xml
  150. .idea/**/dictionaries
  151. .idea/**/shelf
  152. # Generated files
  153. .idea/**/contentModel.xml
  154. # Sensitive or high-churn files
  155. .idea/**/dataSources/
  156. .idea/**/dataSources.ids
  157. .idea/**/dataSources.local.xml
  158. .idea/**/sqlDataSources.xml
  159. .idea/**/dynamic.xml
  160. .idea/**/uiDesigner.xml
  161. .idea/**/dbnavigator.xml
  162. # Gradle
  163. .idea/**/gradle.xml
  164. .idea/**/libraries
  165. # Gradle and Maven with auto-import
  166. # When using Gradle or Maven with auto-import, you should exclude module files,
  167. # since they will be recreated, and may cause churn. Uncomment if using
  168. # auto-import.
  169. # .idea/artifacts
  170. # .idea/compiler.xml
  171. # .idea/jarRepositories.xml
  172. # .idea/modules.xml
  173. # .idea/*.iml
  174. # .idea/modules
  175. # *.iml
  176. # *.ipr
  177. # CMake
  178. cmake-build-*/
  179. # Mongo Explorer plugin
  180. .idea/**/mongoSettings.xml
  181. # File-based project format
  182. *.iws
  183. # IntelliJ
  184. out/
  185. # mpeltonen/sbt-idea plugin
  186. .idea_modules/
  187. # JIRA plugin
  188. atlassian-ide-plugin.xml
  189. # Cursive Clojure plugin
  190. .idea/replstate.xml
  191. # Crashlytics plugin (for Android Studio and IntelliJ)
  192. com_crashlytics_export_strings.xml
  193. crashlytics.properties
  194. crashlytics-build.properties
  195. fabric.properties
  196. # Editor-based Rest Client
  197. .idea/httpRequests
  198. # Android studio 3.1+ serialized cache file
  199. .idea/caches/build_file_checksums.ser
  200. dependency-reduced-pom.xml
  201. /src/main/scala/com/winhc/bigdata/flink/xjk/