Codebase list dnspython / f113bf9d-8adb-4e71-880e-a96096e40ed9/main .flake8
f113bf9d-8adb-4e71-880e-a96096e40ed9/main

Tree @f113bf9d-8adb-4e71-880e-a96096e40ed9/main (Download .tar.gz)

.flake8 @f113bf9d-8adb-4e71-880e-a96096e40ed9/mainraw · history · blame

[flake8]
ignore =
       # Prefer emacs indentation of continued lines
       E126,
       E127,
       E129,
       # Whitespace round parameter '=' can be excessive
       E252,
       # Not excited by the "two blank lines" rule
       E302,
       E305,
       # or the one blank line rule
       E306,
       # Ambigious variables are ok.
       E741,
       # Lines ending with binary operators are OK
       W504,

max-line-length = 80