blob: 998f6ffec58bfc9836ac8c472806d0f2167a8e66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[flake8]
ignore =
# E203: whitespace before ':' (black fails to be PEP8 compliant)
E203
# E731: do not assign a lambda expression, use a def
E731
# W503: line break before binary operator (flake8 is not PEP8 compliant)
W503
# W504: line break after binary operator (flake8 is not PEP8 compliant)
W504
exclude =
src/pyramid/compat.py
tests/fixtures
tests/pkgs
tests/test_config/pkgs
tests/test_config/path
show-source = True
|