cola: vendor polib.py
[git-cola.git] / .flake8
blobbd1ec98723713d4fd18d71dd2995c96e59e910a3
1 [flake8]
2 doctests = true
3 max-line-length = 88
4 exclude=cola/polib.py
5 ignore =
6         # W503 violates spec https://github.com/PyCQA/pycodestyle/issues/513
7         W503
8         # W504 has issues https://github.com/OCA/maintainer-quality-tools/issues/545
9         W504
10         # Black creates whitespace before colon
11         E203