mirror of
https://github.com/mpusz/mp-units.git
synced 2025-06-25 01:01:33 +02:00
10 lines
231 B
INI
10 lines
231 B
INI
[flake8]
|
|
max-line-length = 120
|
|
ignore =
|
|
# comparison to None should be 'if cond is None:'
|
|
E711,
|
|
# comparison to True should be 'if cond is True:' or 'if cond:'
|
|
E712,
|
|
# line break before binary operator
|
|
W503
|