2018-12-27 07:56:17 +03:00
|
|
|
[flake8]
|
|
|
|
max-line-length = 120
|
|
|
|
max-complexity = 10
|
|
|
|
ignore =
|
2023-01-16 12:40:12 +03:00
|
|
|
# line too long, it is covered by pylint
|
|
|
|
E501,
|
|
|
|
# bare except, bad practice, to be removed in the future
|
|
|
|
E722,
|
|
|
|
# imported but unused, too many violations, to be removed in the future
|
|
|
|
F401,
|
|
|
|
# redefinition of unused, to be removed in the future
|
|
|
|
F811,
|
|
|
|
# code flow is too complex, too many violations, to be removed in the future
|
|
|
|
C901,
|
|
|
|
# line break after binary operator effect on readability is subjective
|
|
|
|
W504
|
2018-12-27 07:56:17 +03:00
|
|
|
exclude =
|
|
|
|
tests
|
|
|
|
build
|
|
|
|
tools
|
|
|
|
scripts
|
|
|
|
doc
|
|
|
|
build_scripts
|
2019-02-12 06:43:36 +03:00
|
|
|
*/test/*
|
2019-03-27 16:11:24 +03:00
|
|
|
*/devops_sdk/*
|