|
|
|
|
|
|
max-line-length=120 |
|
|
|
|
|
|
|
ignore = |
|
|
|
# Black |
|
|
|
W503, |
|
|
|
|
|
|
|
# Black |
|
|
|
E203, |
|
|
|
# Black tends to introduce things flake8 doesn't like, such as "line break before binary operator" |
|
|
|
# or whitespace before ':'. Rather than fight with black, just ignore these for now. |
|
|
|
W503, E203, |
|
|
|
# may be undefined, or defined from star imports |
|
|
|
# "may be undefined, or defined from star imports" and related warnings |
|
|
|
# We should stop doing these, but for now, leave them in. |
|
|
|
|
|
|
|
# vertical whitespace e.g. "expected 2 blank lines, found 1" |
|
|
|
E302 |