2017-01-09 20:07:29 +03:00
|
|
|
[flake8]
|
2017-05-09 01:24:52 +03:00
|
|
|
max-line-length = 120
|
2017-01-09 20:07:29 +03:00
|
|
|
max-complexity = 10
|
|
|
|
ignore =
|
2017-11-02 01:17:36 +03:00
|
|
|
E501, # line too long, it is covered by pylint
|
|
|
|
E722, # bare except, bad practice, to be removed in the future
|
|
|
|
F401, # imported but unused, too many violations, to be removed in the future
|
|
|
|
F811, # redefinition of unused, to be removed in the future
|
|
|
|
C901 # code flow is too complex, too many violations, to be removed in the future
|
|
|
|
|