.gitignore 679 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. build
  2. *.py[co]
  3. pkg/arch/*.tar.xz
  4. *.swp
  5. doc/_build
  6. dist
  7. MANIFEST
  8. *~
  9. *#
  10. *.wpr
  11. *.wpu
  12. *.DS_Store
  13. # virtualenv
  14. # - ignores directories of a virtualenv when you create it right on
  15. # top of salt such as
  16. # - /some/path$ git clone https://github.com/thatch45/salt.git
  17. # - /some/path$ virtualenv --python=/usr/bin/python2.6 salt
  18. venv/
  19. bin/
  20. include/
  21. lib/
  22. pip/
  23. share/
  24. tests/integration/tmp/
  25. fbs/
  26. # tox - ignore any tox-created virtualenv dirs
  27. .tox
  28. # setuptools stuff
  29. *.egg-info
  30. # code coverage outputs genereated by coverage.py
  31. .coverage
  32. coverage.xml
  33. htmlcov/
  34. /.project
  35. /.pydevproject
  36. /.idea
  37. # ignore ctags file
  38. tags
  39. # ignore Vagrant file
  40. Vagrantfile
  41. .vagrant
  42. *.bak
  43. *.pdf
  44. TODO
  45. .venv