azure-cli/.flake8

17 строки
511 B
Plaintext
Исходник Обычный вид История

[flake8]
max-line-length = 120
max-complexity = 10
ignore =
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
exclude =
azure_bdist_wheel.py
build
tools
scripts
doc
build_scripts
2017-12-18 23:35:22 +03:00