1[flake8]
2import-order-style=google
3# Note: this forces all google imports to be in the third group. See
4# https://github.com/PyCQA/flake8-import-order/issues/111
5application-import-names=google
6ignore = E203, E266, E501, W503
7exclude =
8  __pycache__,
9  .git,
10  *.pyc,
11  conf.py
12