.gitignore 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # ---> BricxCC
  2. # Bricx Command Center IDE
  3. # http://bricxcc.sourceforge.net
  4. *.bak
  5. *.sym
  6. # ---> Java
  7. *.class
  8. # Mobile Tools for Java (J2ME)
  9. .mtj.tmp/
  10. # Package Files #
  11. *.jar
  12. *.war
  13. *.ear
  14. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  15. hs_err_pid*
  16. # ---> Python
  17. # Byte-compiled / optimized / DLL files
  18. __pycache__/
  19. *.py[cod]
  20. *$py.class
  21. # C extensions
  22. *.so
  23. # Distribution / packaging
  24. .Python
  25. env/
  26. build/
  27. develop-eggs/
  28. dist/
  29. downloads/
  30. eggs/
  31. .eggs/
  32. lib/
  33. lib64/
  34. parts/
  35. sdist/
  36. var/
  37. *.egg-info/
  38. .installed.cfg
  39. *.egg
  40. # PyInstaller
  41. # Usually these files are written by a python script from a template
  42. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  43. *.manifest
  44. *.spec
  45. # Installer logs
  46. pip-log.txt
  47. pip-delete-this-directory.txt
  48. # Unit test / coverage reports
  49. htmlcov/
  50. .tox/
  51. .coverage
  52. .coverage.*
  53. .cache
  54. nosetests.xml
  55. coverage.xml
  56. *,cover
  57. # Translations
  58. *.mo
  59. *.pot
  60. # Django stuff:
  61. *.log
  62. # Sphinx documentation
  63. docs/_build/
  64. # PyBuilder
  65. target/