blob: 39d486b3a5b1490f52bf0e7f9f1b8e5fa3de657f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[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 =
tests/fixtures
tests/pkgs
tests/test_config/pkgs
tests/test_config/path
show-source = True
|