10 lines
223 B
INI
10 lines
223 B
INI
[flake8]
|
|
exclude = migrations
|
|
max-line-length = 88
|
|
ignore =
|
|
# whitespace before ':' (not PEP8-compliant for slicing)
|
|
E203,
|
|
# lambda expression
|
|
E731,
|
|
# line break before binary operator (not PEP8-compliant)
|
|
W503
|