You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. ## ---> Java
  2. ## Compiled class file
  3. #*.class
  4. #
  5. ## Log file
  6. #*.log
  7. #
  8. ## BlueJ files
  9. #*.ctxt
  10. #
  11. ## Mobile Tools for Java (J2ME)
  12. #.mtj.tmp/
  13. #
  14. ## Package Files #
  15. #*.jar
  16. #*.war
  17. #*.nar
  18. #*.ear
  19. #*.zip
  20. #*.tar.gz
  21. #*.rar
  22. #
  23. ## virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  24. #hs_err_pid*
  25. #
  26. ## ---> Python
  27. ## Byte-compiled / optimized / DLL files
  28. #__pycache__/
  29. #*.py[cod]
  30. #*$py.class
  31. #
  32. ## C extensions
  33. #*.so
  34. #
  35. ## Distribution / packaging
  36. #.Python
  37. #build/
  38. #develop-eggs/
  39. #dist/
  40. #downloads/
  41. #eggs/
  42. #.eggs/
  43. #lib/
  44. #lib64/
  45. #parts/
  46. #sdist/
  47. #var/
  48. #wheels/
  49. #*.egg-info/
  50. #.installed.cfg
  51. #*.egg
  52. #MANIFEST
  53. #
  54. ## PyInstaller
  55. ## Usually these files are written by a python script from a template
  56. ## before PyInstaller builds the exe, so as to inject date/other infos into it.
  57. #*.manifest
  58. #*.spec
  59. #
  60. ## Installer logs
  61. #pip-log.txt
  62. #pip-delete-this-directory.txt
  63. #
  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. #.hypothesis/
  75. #.pytest_cache/
  76. #
  77. ## Translations
  78. #*.mo
  79. #*.pot
  80. #
  81. ## Django stuff:
  82. #*.log
  83. #local_settings.py
  84. #db.sqlite3
  85. #
  86. ## Flask stuff:
  87. #instance/
  88. #.webassets-cache
  89. #
  90. ## Scrapy stuff:
  91. #.scrapy
  92. #
  93. ## Sphinx documentation
  94. #docs/_build/
  95. #
  96. ## PyBuilder
  97. #target/
  98. #
  99. ## Jupyter Notebook
  100. #.ipynb_checkpoints
  101. #
  102. ## IPython
  103. #profile_default/
  104. #ipython_config.py
  105. #
  106. ## pyenv
  107. #.python-version
  108. #
  109. ## celery beat schedule file
  110. #celerybeat-schedule
  111. #
  112. ## SageMath parsed files
  113. #*.sage.py
  114. #
  115. ## Environments
  116. #.env
  117. #.venv
  118. #env/
  119. #venv/
  120. #ENV/
  121. #env.bak/
  122. #venv.bak/
  123. #
  124. ## Spyder project settings
  125. #.spyderproject
  126. #.spyproject
  127. #
  128. ## Rope project settings
  129. #.ropeproject
  130. #
  131. ## mkdocs documentation
  132. #/site
  133. #
  134. ## mypy
  135. #.mypy_cache/
  136. #.dmypy.json
  137. #dmypy.json
  138. #
  139. ## Pyre type checker
  140. #.pyre/
  141. #