| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- *.py[cod]
- *.orig
- # Ignore gen/ directory where we temporarily store thrift classes to help with development
- gen/
- # No local dbs
- *.db
- # C extensions
- *.so
- # Packages
- *.egg
- *.egg-info
- .tests
- bin
- build
- develop-eggs
- dist
- eggs
- parts
- sdist
- var
- .installed.cfg
- lib64
- __pycache__
- .cache/
- # Installer logs
- pip-log.txt
- # Unit test / coverage reports
- .coverage
- .coverage*
- .tox
- .noseids
- # Translations
- *.mo
- # Ignore python virtual environments
- env*
- thrift_env
- # Ignore local logs
- *.log
- logs/*
- !logs/.gitkeep
- # Ignore local log
- npm-debug.log
- # Ignore docs
- docs/_build/*
- # ignore ipython profile stuff
- config/profile_default/
- !config/profile_default/ipython_config.py
- config/README
- protobuf/*.py
- .phutil_module_cache
- # Ignore coverage output
- *.xml
- coverage/
- # Ignore benchmarks output
- perf.log
- perf.svg
- # vim
- *.swp
- .idea/
|