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 =
|
2023-02-08 10:47:10 +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
|
2020-07-27 10:50:41 +03:00
|
|
|
per-file-ignores =
|
|
|
|
# module level import not at top of file, elevate timer to measure import time
|
|
|
|
src/azure-cli/azure/cli/__main__.py:E402
|
2020-11-19 07:10:01 +03:00
|
|
|
exclude =
|
2017-11-29 21:18:01 +03:00
|
|
|
azure_bdist_wheel.py
|
|
|
|
build
|
|
|
|
tools
|
|
|
|
scripts
|
|
|
|
doc
|
|
|
|
build_scripts
|
2020-11-19 07:10:01 +03:00
|
|
|
*/grammar/
|
|
|
|
vendored_sdks
|
2021-05-13 09:04:25 +03:00
|
|
|
tests
|