12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- build
- *.py[co]
- pkg/arch/*.tar.xz
- *.swp
- doc/_build
- dist
- MANIFEST
- *~
- *#
- *.wpr
- *.wpu
- *.DS_Store
- # virtualenv
- # - ignores directories of a virtualenv when you create it right on
- # top of salt such as
- # - /some/path$ git clone https://github.com/thatch45/salt.git
- # - /some/path$ virtualenv --python=/usr/bin/python2.6 salt
- venv/
- bin/
- include/
- lib/
- pip/
- share/
- tests/integration/tmp/
- fbs/
- # tox - ignore any tox-created virtualenv dirs
- .tox
- # setuptools stuff
- *.egg-info
- # code coverage outputs genereated by coverage.py
- .coverage
- coverage.xml
- htmlcov/
- /.project
- /.pydevproject
- /.idea
- # ignore ctags file
- tags
- # ignore Vagrant file
- Vagrantfile
- .vagrant
- *.bak
- *.pdf
- TODO
- .venv
|