| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- # Python specific
- __pycache__/
- *.py[cod]
- *$py.class
- *.so
- .Python
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- *.egg-info/
- .installed.cfg
- *.egg
- MANIFEST
- # Emacs specific
- *~
- \#*\#
- /.emacs.desktop
- /.emacs.desktop.lock
- *.elc
- auto-save-list
- tramp
- .\#*
- .org-id-locations
- *_archive
- *_flymake.*
- /eshell/history
- /eshell/lastdir
- /elpa/
- *.rel
- /auto/
- .cask/
- flycheck_*.el
- /server/
- .projectile
- .dir-locals.el
- /network-security.data
- # Distribution / packaging
- .Python
- env/
- build/
- develop-eggs/
- dist/
- downloads/
- eggs/
- .eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- *.egg-info/
- .installed.cfg
- *.egg
- # Unit test / coverage reports
- htmlcov/
- .tox/
- .coverage
- .coverage.*
- .cache
- nosetests.xml
- coverage.xml
- *.cover
- .hypothesis/
- .pytest_cache/
- # Slackware specific
- *.txz
- *.tgz
- *.tar.gz
- *.tar.xz
- /tmp/
- /tmp-*
- /pkg/
- /work/
- # Logs
- *.log
- logs/
- log/
- # Environment
- .env
- .venv
- env/
- venv/
- ENV/
- env.bak/
- venv.bak/
- # OS specific
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- # Custom for this project
- /test_root/
- /test_snapshots/
|