Bowe Strickland
2018-10-27 323fa95deea50f49c119728fc2eeacb9e0c51241
commit | author | age
851c36 1 [flake8]
MM 2 ignore =
3     # E203: whitespace before ':' (black fails to be PEP8 compliant)
4     E203
5     # E731: do not assign a lambda expression, use a def
6     E731
7     # W503: line break before binary operator (flake8 is not PEP8 compliant)
8     W503
25737f 9     # W504: line break after binary operator (flake8 is not PEP8 compliant)
MM 10     W504
851c36 11 exclude =
MM 12     src/pyramid/compat.py
13     src/pyramid/scaffolds/alchemy
14     src/pyramid/scaffolds/starter
15     src/pyramid/scaffolds/zodb
16     tests/fixtures
17     tests/pkgs
18     tests/test_config/pkgs
19     tests/test_config/path
20 show-source = True